我有一个类似这样的表结构
table Collection
Id
Name
table Product
Id
Name
table Item
Id
Collection_Id
Product_Id
我想要的是将上面的集合映射到一个名为:
Class Collection
Id
Name
List<Product> Products
我的产品类是:
Class Product
Id
Name
我如何使用流利的 nhibernate 做到这一点?有人知道吗?