I have a table Person: id, name
Person
id, name
I often have queries like:
select * from Person where name Like \"%abc%\".
in EF 6 you can create indexes like this
Property(t => t.TotalValue) .HasColumnAnnotation( IndexAnnotation.AnnotationName, new IndexAnnotation(new IndexAttribute("IX_inventory_import_total_value", 1)) );