Linq没有内置的全文搜索,似乎没有很多关于这个问题的帖子,所以我玩了一个玩,并提出了这个方法为我的utlity类:
public static IEnumerable<TSource> GenericFullTextSearch<TSource>(string text,MyDataContext context) { //Find LINQ Table attribute object[] info = typeof(TSource).GetCustomAttributes(typeof(System.Data.Linq.Mapping.TableAttribute),true); //Get table name String table = (info[0] as System.Data.Linq.Mapping.TableAttribute).Name; //Full text search on that table return context.ExecuteQuery<TSource>(String.Concat("SELECT * FROM ",table," WHERE CONTAINS(*,{0})"),text); }
并将这个包装器添加到每个部分Linq类,其中有一个全文索引
public static IEnumerable<Pet> FullTextSearch(string text,MyDataContext context) { return (LinqUtilities.GenericFullTextSearch<Pet>(text,context) as IEnumerable<Pet>); }
所以现在我可以用整齐的东西做全文搜索
var Pets = Pet.FullTextSearch(helloimatextBox.Text,MyDataContext).Skip(10).Take(10);