我正在使用Fluent NHibernate + LINQ和MS SQL 2008.
我想要实现的是对重音不敏感的搜索,在SQL中看起来像这样:
select * from people where name = 'somestring' COLLATE Latin1_General_CI_AI
是否可以写下这样的内容:
Session.Query<Person>.Where(p => p.Name == "somestring").WithCollation();
答案 0 :(得分:0)