gpt4 book ai didi

NHibernate.PropertyValueException : not-null property references a null or transient

转载 作者:行者123 更新时间:2023-12-04 06:52:08 25 4
gpt4 key购买 nike

我收到以下异常。

NHibernate.PropertyValueException:非空属性引用空值或 transient

这是我的映射文件。

产品

  <class name="Product" table="Products">
<id name="Id" type="Int32" column="Id" unsaved-value="0">
<generator class="identity"/>
</id>
<set name="PriceBreaks" table="PriceBreaks" generic="true" cascade="all" inverse="true" >
<key column="ProductId" />
<one-to-many class="EStore.Domain.Model.PriceBreak, EStore.Domain" />
</set>

</class>

价格突破
 <class name="PriceBreak" table="PriceBreaks">
<id name="Id" type="Int32" column="Id" unsaved-value="0">
<generator class="identity"/>
</id>
<property name="ProductId" column="ProductId" type="Int32" not-null="true" />

<many-to-one name="Product" column="ProductId" not-null="true" cascade="all" class="EStore.Domain.Model.Product, EStore.Domain" />

</class>

我在以下方法中遇到异常
[Test]
public void Can_Add_Price_Break()
{

IPriceBreakRepository repo = new PriceBreakRepository();

var priceBreak = new PriceBreak();

priceBreak.ProductId = 19;
repo.Add(priceBreak);

Assert.Greater(priceBreak.Id, 0);
}

跟进 Jan 的回复。我已经从 priceBreak map 中删除了 ProductId。这有效!!
    public int AddPriceBreak(Product product, PriceBreak priceBreak)
{


using (ISession session = EStore.Domain.Helpers.NHibernateHelper.OpenSession())
using (ITransaction transaction = session.BeginTransaction())
{

product.AddPriceBreak(priceBreak);
session.SaveOrUpdate(product);
transaction.Commit();
}

return priceBreak.Id;
}

最佳答案

从映射和 PriceBreak 类中删除 ProductId 属性。并使用 PriceBreaks 集合添加 PriceBreaks,您不需要 PriceBreakRepository,而只需要 ProductRepository。

例子:

using (var session = sessionFactory.OpenSession()) 
{
using (var tx = session.BeginTransaction())
{

var product = session.Get<Product>(19);
product.AddPriceBreak(new PriceBreak());

tx.Commit();
}
}

在产品中:
class Product 
{
// ...
public void AddPriceBreak(PriceBreak pb)
{
pb.Product = this;
PriceBreaks.Add(pb);
}
}

关于NHibernate.PropertyValueException : not-null property references a null or transient,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2960171/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com