- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
早上好
我是 NHibernate 的新手。我想在我的新项目中使用它,但是我遇到了外键引用的问题。我不确定为什么会出现此问题。
显示的错误消息是:not-null property references a null or transient value Tec.Core.Model.Budget.oInvestmentType
这是我的表架构:
这是我的映射文件
机场.hbm.xml
<?xml version="1.0" encoding="utf-8" ?>
<hibernate-mapping xmlns="urn:nhibernate-mapping-2.2">
<class name="Tec.Core.Model.Airport, Tec.Core" table="tblAirport" lazy="false">
<id name="ID" column="AirportID" unsaved-value="0">
<generator class="identity" />
</id>
<property name="AirportCode" column="AirportCode" />
<property name="AirportFullName" column="AirportFullName" />
<bag name="Budgets" table="tblBudget" inverse="true" cascade="save-update">
<key column="AirportID" />
<one-to-many class="Tec.Core.Model.Budget, Tec.Core" />
</bag>
</class>
</hibernate-mapping>
机场.cs
public class Airport:Entity<int>
{
private string _airportCode="";
private string _airportFullName="";
private IList<Budget> _airportBudgets = new List<Budget>();
private Airport() { }
public Airport(string AirportCode, string AirportFullName) {
this._airportCode = AirportCode;
this._airportFullName = AirportFullName;
}
public string AirportCode {
get { return _airportCode; }
set { _airportCode = value; }
}
public string AirportFullName {
get { return _airportFullName; }
set { _airportFullName = value; }
}
public IList<Budget> Budgets {
get { return new List<Budget>(_airportBudgets).AsReadOnly(); }
protected set { _airportBudgets = value; }
}
public void AddBudget(Budget air_budget){
if (air_budget != null && !_airportBudgets.Contains(air_budget)){
air_budget.oAirport = this;
_airportBudgets.Add(air_budget);
}
}
public override int GetHashCode(){
return (GetType().FullName + "|" + _airportCode.GetHashCode()).GetHashCode();
}
}
InvestmentCode.hbm.xml
<?xml version="1.0" encoding="utf-8" ?>
<hibernate-mapping xmlns="urn:nhibernate-mapping-2.2">
<class name="Tec.Core.Model.InvestmentCode, Tec.Core" table="tblInvestmentCode" lazy="false">
<id name="ID" column="InvestmentCodeID" unsaved-value="0">
<generator class="identity" />
</id>
<property name="InvCode" column="InvestmentCode" />
<property name="InvCodeNote" column="InvestmentCodeNote" />
<bag name="Budgets" table="tblBudget" inverse="true" cascade="save-update">
<key column="InvestmentCodeID" />
<one-to-many class="Tec.Core.Model.Budget, Tec.Core" />
</bag>
</class>
</hibernate-mapping>
InvestmentCode.cs
public class InvestmentCode: Entity {
private string _investmentCode="";
private string _investmentCodeNote="";
private IList<Budget> _lstinvestmentCodeBudgets = new List<Budget>();
private InvestmentCode() { }
public InvestmentCode(string investmentCode, string InvestmentCodeNote) {
this._investmentCode = investmentCode;
this._investmentCodeNote = InvestmentCodeNote ;
}
public string InvCode {
get { return _investmentCode ; }
set { _investmentCode = value; }
}
public string InvCodeNote {
get { return _investmentCodeNote ; }
set { _investmentCodeNote = value; }
}
public IList<Budget> Budgets {
get { return new List<Budget>(_lstinvestmentCodeBudgets).AsReadOnly(); }
protected set { _lstinvestmentCodeBudgets = value; }
}
public void AddBudget(Budget investment_code_budget) {
if (investment_code_budget != null && !_lstinvestmentCodeBudgets.Contains(investment_code_budget)){
investment_code_budget.oInvestmentCode = this;
_lstinvestmentCodeBudgets.Add(investment_code_budget);
}
}
public override int GetHashCode(){
return (GetType().FullName +"|"+ _investmentCode.GetHashCode()).GetHashCode();
}
}
InvestmentType.hbm.xml
<?xml version="1.0" encoding="utf-8" ?>
<hibernate-mapping xmlns="urn:nhibernate-mapping-2.2">
<class name="Tec.Core.Model.InvestmentType, Tec.Core" table="tblInvestmentType" lazy="false">
<id name="ID" column="InvestmentTypeID" unsaved-value="0">
<generator class="identity" />
</id>
<property name="InvestmentTypeNote" column="InvestmentTypeNote" />
<bag name="Budgets" table="tblBudget" inverse="true" cascade="save-update">
<key column="InvestmentTypeID" />
<one-to-many class="Tec.Core.Model.Budget, Tec.Core" />
</bag>
</class>
</hibernate-mapping>
InvestmentType.cs
public class InvestmentType: Entity {
private string _investmentTypeNote="";
private IList<Budget> _lstInvestmentTypeBudgets = new List<Budget>();
private InvestmentType() { }
public InvestmentType(string InvestmentTypeNote){
this._investmentTypeNote = InvestmentTypeNote ;
}
public string InvestmentTypeNote {
get { return _investmentTypeNote ; }
set { _investmentTypeNote = value; }
}
public IList<Budget> Budgets {
get { return new List<Budget>(_lstInvestmentTypeBudgets).AsReadOnly(); }
protected set { _lstInvestmentTypeBudgets = value; }
}
public void AddBudget(Budget investment_type_budget) {
if (investment_type_budget != null && !_lstInvestmentTypeBudgets.Contains(investment_type_budget)){
investment_type_budget.oInvestmentType = this;
_lstInvestmentTypeBudgets.Add(investment_type_budget);
}
}
public override int GetHashCode(){
return (GetType().FullName + "|"+ _investmentTypeNote.GetHashCode()).GetHashCode();
}
}
预算.hbm.xml
<?xml version="1.0" encoding="utf-8" ?>
<hibernate-mapping xmlns="urn:nhibernate-mapping-2.2">
<class name="Tec.Core.Model.Budget, Tec.Core" table="tblBudget" lazy="false">
<id name="ID" column="BudgetID" unsaved-value="0">
<generator class="identity" />
</id>
<property name="BudgetAmount" column="BudgetAmount" />
<property name="BudgetYear" column="BudgetYear" />
<many-to-one name="oAirport" column="AirportID"
class="Tec.Core.Model.Airport, Tec.Core" not-null="true" />
<many-to-one name="oInvestmentCode" column="InvestmentCodeID"
class="Tec.Core.Model.InvestmentCode, Tec.Core" not-null="true" />
<many-to-one name="oInvestmentType" column="InvestmentTypeID"
class="Tec.Core.Model.InvestmentType, Tec.Core" not-null="true" />
</class>
</hibernate-mapping>
预算.cs
public class Budget:Entity<long>
{
private float _budgetAmount;
private int _budgetYear;
private InvestmentType _investmentType;
private InvestmentCode _investmentCode;
private Airport _airport;
public Budget() { }
public float BudgetAmount {
get{return _budgetAmount; }
set{_budgetAmount = value;}
}
public int BudgetYear {
get{return _budgetYear; }
set{_budgetYear = value;}
}
public Airport oAirport{
get{return _airport; }
set{_airport = value;}
}
public InvestmentType oInvestmentType{
get{return _investmentType; }
set{_investmentType = value;}
}
public InvestmentCode oInvestmentCode {
get{return _investmentCode ; }
set{_investmentCode = value;}
}
public override int GetHashCode(){
return (GetType().FullName + "|" + _airport.GetHashCode() +"|"+ _investmentCode.GetHashCode()+"|"+ _investmentType.GetHashCode()).GetHashCode();
}
}
在我的 Default.asp.cs 中
我有以下代码:
Airport objA = new Airport("NA", "New Airport")
InvestmentCode objIC = new InvestmentCode("1000", "ABCD");
InvestmentType objIT = new InvestmentType("Capex");
Budget objBg = new Budget();
objBg.oAirport = objA;
objBg.oInvestmentCode = objIC;
objBg.oInvestmentType = objIT;
objBg.BudgetAmount = 10000;
objBg.BudgetYear = 2014;
objA.AddBudget(objBg);
AirportDao.SaveOrUpdate(objA);
objIC.AddBudget(objBg);
daoFactory.GetInvestmentCodeDao().Save(objIC); //Error occur here not-null property references a null or transient value Tec.Core.Model.Budget.oInvestmentType
objIT.AddBudget(objBg);
daoFactory.GetInvestmentTypeDao().Save(objIT);
最佳答案
我不会赌上性命..但我要说你的问题就在这里:
public IList<Budget> Budgets {
get { return new List<Budget>(_lstinvestmentCodeBudgets).AsReadOnly(); }
protected set { _lstinvestmentCodeBudgets = value; }
}
此代码按以下顺序调用:
objA.AddBudget(objBg);
AirportDao.SaveOrUpdate(objA);
objA
被持久化..并且 objBg
被级联并被持久化。这意味着 NHiberante 正在跟踪对 objBg
的引用。
然后你调用这个:
objIC.AddBudget(objBg);
这会按预期将预算添加到列表中。我们将此列表称为“列表 A”。
然后你去调用保存:
daoFactory.GetInvestmentCodeDao().Save(objIC);
当 NHibernate 开始从您的实体中读取值时..它涉及到您的 getter:
get { return new List<Budget>(_lstInvestmentTypeBudgets).AsReadOnly(); }
您已将您的属性(property)包装在一个新列表中。所以现在,这是“列表 B”.. 而不是 NHibernate 期望的“列表 A”。 “列表 B”还没有被持久化……所以 NHibernate 说“等等……你试图持久化一些我没有在更新中跟踪的东西”。
尝试将你的 getter 改成这样:
get { return _lstInvestmentTypeBudgets; }
..看看是否可行。它应该.. 因为你返回的是同一个实例。
关于c# - Nhibernate 非空属性引用空值或 transient 值 Tec.Core.Model.Budget.oInvestmentCode,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22003511/
我一直在为初学者阅读 nhibernate 3.0 并阅读了一些常见错误(我犯了一些错误) 我想知道将一个或多个记录设为只读有哪些策略。现在我取回所有行并循环遍历它们,使它们通过 session.Re
我们有一个使用 NHibernate 的相当健壮的系统,我们正在从单个数据库服务器迁移到拥有两台服务器,一台用于管理,另一台用于我们面向公众的网站。这主要是为了让我们可以使用不会影响当前站点的工作流来
我在尝试构建一个时遇到以下错误 session 工厂: PersistenceTests.Can_Map_Orders_To_Database : Failed System.IndexOutOfRa
如果客户有很多订单附加到他们。您将如何使用 NHibernate 延迟加载订单列表。 是不是需要设置映射文件?任何帮助或示例都会很棒。 最佳答案 Chris 的建议是我会怎么做,但是如果您想在运行时执
我正在尝试使用 HQL 对一个简单的查询进行分页,并将总行数作为同一查询的一部分进行检索。 我的查询很简单... var members = UnitOfWork.CurrentSession.Cre
我有旧版数据库,存储的日期表示无日期为9999-21-31, 列Till_Date的类型为DateTime not-null="true"。 在应用程序中,我要构建持久化类,将no-date表示为nu
您可以指定命名空间和程序集以使用 HBM 文件顶部的类型: 您可以在同一个映射文件中使用来自多个程序集/命名空间的类型,如果可以,这样做的语法是什么? 最佳答案 您可以从 HBM 文件的顶部删除默认
如何强制 NHibernate 在多对多集合上执行 RIGHT 外连接或 INNER 连接而不是 LEFT 外连接? 我想这样做的原因是因为过滤应用于集合元素。使用左连接,您将获得与未过滤查询相同的返
我们开始在我的工作场所使用NHibernate,包括从映射生成模式。我们的DBA想要的一件事是主键和外键关系的名称一致。我已经能够设置FK约束名称,但是在的文档中看,它似乎不存在命名主键约束的方法。
我需要NHibernate来执行这样的查询: SELECT * FROM Users ORDER BY Func(FirstName, LastName) Standart NHibernate Or
假设在一个实体中有属性 id、用户名、年龄、地址。现在我只想要 id 和 username 并使用此代码。 投影可以从查询中返回实体列表以外的内容。 var proj = Projections.Pr
我花了很长时间,但我终于让 nHibernate 的 Hello World 工作了。在我做了“延迟加载”之后它起作用了。老实说,我无法告诉您为什么这一切都有效,但确实如此,现在我正在阅读您不需要延迟
假设您有两个类,Person 和 Address。 Person 有一个对 Address 的引用,如下所示: public class Person { public virtual Addre
我在 NHibernate 引用文档 中阅读第 10 章“只读实体”如下: http://nhibernate.info/doc/nh/en/index.html#readonly 但不幸的是我不知道
有谁知道 NHibernate 是否支持从存储过程返回输出参数?我在文档中进行了搜索,但无法真正找到任何可以确认的内容。 最佳答案 我面临同样的问题。 NHibernate 不允许您以这种方式使用存储
简而言之,什么工作得更快: SessionFactory 预编译 XML 配置,或 流畅的NHibernate提供 以编程方式配置? 最佳答案 我个人的经验是,Configuration 对象的构建(
我的域类具有如下所示的集合: private List _foos = new List(); public virtual ReadOnlyCollection Foos { get { retur
当我有一个带有一对多子集合的实体对象时,我需要查询一个特定的子对象,是否有我还没有想出的功能或一些巧妙的模式来避免 NHibernate获取整个子集合? 例子: class Parent {
在我的域中,员工和部门具有一对多的双向关系;为了让子员工同步这个,我有一个“内部”访问字段,用于部门中员工的集合(NHibernate 的 Iesi),否则它将是只读公共(public)的。像这样:
我有一个 nhibernate 自定义类型,我想用 Fluent NHibernate 映射它。 HBM 映射如下所示。 Services.Data.DateConventionTyp
我是一名优秀的程序员,十分优秀!