Linq-to-NHibernate は、単一のクエリで複数のエンティティからデータを取得することをサポートしていますか?
例えば:
Dim query = From f In context.Session.Linq(Of Floor)() _
Select f.Id, f.Name, f.Building.Id, f.Building.Name
Dim results = query.ToList()
Building
の親エンティティはどこですかFloor
。