1
nHibernate 3 QueryOver 구문을 사용하여 Linq에서 객체까지 가능한 절을 컴파 일할 방법을 아는 사람이 있습니까? Linq와 nHibernate가 가능하다는 것을 알고 있지만, 여전히 쿼리 오버 API에 대해 고민하고 있습니다. 여기 nHibernate 3 Compound from 절을 가진 QueryOver
객체 Linq에은 MSDN에서 가져온 예입니다var scoreQuery = from student in students
from score in student.Scores
where score > 90
select new { Last = student.LastName, score };
이 MSDN