您好我将如何设置这种关系?我的alreade有多对多的真实性,但现在我需要在连接表中添加额外的新功能。
为了简单起见,我有一个User类,Product类和UserProduct类,今天它看起来像这样。
Product.hbm.xml
<bag name="Users" table="users_products" inverse="true" cascade="save-update" >
<cache usage="read-write" />
<key column="ProductId" />
<many-to-many class="User" column="UserId" outer-join="true" />
</bag>
<bag name="UserProduct" inverse="true" cascade="save-update">
<cache usage="read-write" />
<key column="ProductId" />
<one-to-many class="UserProduct" />
</bag>
User.hbm.xml
<bag name="Products" table="users_products" inverse="true" cascade="save-update" >
<cache usage="read-write" />
<key column="UserId" />
<many-to-many class="Product" column="ProductId" />
</bag>
<bag name="UserProduct" inverse="true" cascade="save-update">
<cache usage="read-write" />
<key column="UserId" />
<one-to-many class="UserProduct" />
</bag>
级联应该如何? 现在,为了新功能,我创建了一个新类UserProduct:
private int _id;
private User _user;
private Product _product;
private string _ownComment;
并创造了 UserProduct.hbm.xml
<?xml version="1.0" encoding="utf-8" ?>
<hibernate-mapping xmlns="urn:nhibernate-mapping-2.2" namespace="" assembly="">
<class name="UserProduct" table="users_products">
<cache usage="read-write"/>
<id name="Id" column="UsersWhiskiesId" type="Int32" length="4" unsaved-value="0">
<generator class="native" />
</id>
<many-to-one name="User" class="User" column="UserId" not-null="true" />
<many-to-one name="Product" class="Product" column="ProductId" not-null="true" />
<property name="OwnComment" column="OwnComment" type="String" />
</class>
</hibernate-mapping>
如果我之前使用过user.Products.Add(product); 它现在怎么样? 我将如何映射用户和产品? 我如何更新一个简短的记录? 当我删除用户时,我想删除与产品的关联,而不是产品。
新问题: 我有一个注册用户可以收集产品的页面。在这个页面上,我现在希望用户能够隐藏一些产品。我有一个gridview填充和一个带复选框的模板字段。如何更新UserProduct,其中我有一个列“HideProduct”。我在一个按钮中有这个代码。
for (int i = 0; i < this.gvProducts.Rows.Count; i++)
{
GridViewRow row = this.gvProducts.Rows[i];
bool isChecked = ((CheckBox)row.FindControl("chkSelect")).Checked;
if (isChecked)
{
int productId=
Convert.ToInt32(this.gvProducts.DataKeys[row.RowIndex].Value);
UserProduct up= new UserProduct();
up.User = this._user;
up.Product= DataManagement.CoreRepository.GetObjectById<Product>(productId);
up.HideProduct = isChecked;
DataManagement.CoreRepository.UpdateObject(up);
感谢您的帮助!
答案 0 :(得分:2)
您需要将多对多关系拆分为两个多对一关系,就像在数据库中一样。
因此,一个用户拥有许多UserProduct项,一个产品有许多UserProduct项。 UserProduct有一个用户和一个产品。