Tagged Questions
26
votes
3answers
6k views
Linq for NHibernate and fetch mode of eager loading
Is there a way to set the fetchmode to eager for more than one object using linq for nhibernate. There seems to be an expand method which only allows me to set one object. However I need to set it for ...
1
vote
1answer
362 views
Is it possible to eager load over two one-to-many relationships in NHibernate?
Given an object hierarchy such as the following:
class Category
{
List<SubCategory> SubCategories;
}
class SubCategory
{
List<Product> Products;
}
class Product
{
}
Is it ...
0
votes
1answer
102 views
Fluent NHibernate Linq Complex Component Eager Loading
We are using Fluent NHibernate LINQ in our project with legacy database.
Our scenarios is, we have a table with Customer information with address.
We have created Customer and Address as separate ...