Hello All ,
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