With EF6 Code first, How can I declare with Data Annotation (not fluent) a FULL TEXT INDEX on name property :
public class Picture
{
public string Name { get; set; }
}
it's should looks like to : ?
public class Picture
{
[Index("IX_Picture_Name ") ?? ]
public string Name { get; set; }
}
Thanks
UPDATE: So if is not possible with data annotation, maybe with fluent ?