2011-04-12 4 views
0

검색 방법을 구현하려고합니다. 문자열이 지정된 문자열 목록의 요소로 구성되어 있는지 확인하려고합니다.Linq to Nhibernate 오류

customers = GetSession().Linq<customer>(); 
if (!searchFilter.Expertises.IsEmpty()) 
{ 
    customers = customers.Where(x => searchFilter.Expertises.Any(s => x.Spec.Expertise.Contains(s))); 
} 
return customers.ToList(); 

그러나이 오류가 예외가, 자 NHibernate에 LINQ는 "없음"

가 구현 좀 도와주세요 지원하지 않는 것 같습니다이

답변