I have the following entities
public class Category
{
Id
Name
}
public class Product
{
Id
Name
List<Category> list;
}
what I want to do is get all the product by category name using nHibernate
any help will be appreciated
Thanks in Advance
Thank you for help
i have solved the problem using Join , I didn’t fine NHibernate.Linq.dll in the version that I have and I have served the Internet to download it
My Solution is
Thank you again