我遇到了一个真正令人沮丧的问题,花了几个小时尝试每一种方式来解决问题。当一个集合在某些对象上延迟加载时,它会抛出一个LazyInitializationException,指出没有会话或会话已关闭。将代码放入干净的控制台应用程序进行测试之后 - 我确信会话只是无法关闭!这是代码:
private static ISessionFactory _sessionFactory;
static void Main(string[] args)
{
_sessionFactory = BuildFactory(@"*<ThisIsMyConnectionString>*");
using (var session = _sessionFactory.OpenSession())
{
var allContacts = session.Query<Contact>().Where(x=>x.EmployeeId.HasValue);
foreach (var contact in allContacts)
{
var allServices = contact.EmployeeServices.ToArray();
}
session.Dispose();
}
}
private static ISessionFactory BuildFactory(string connectionString = null)
{
return Fluently.Configure()
.Database(FluentNHibernate.Cfg.Db.MsSqlConfiguration.MsSql2008.ConnectionString(connectionString))
.Mappings(m =>
{
m.FluentMappings.Conventions.AddFromAssemblyOf<TableNameConvention>();
m.FluentMappings.AddFromAssemblyOf<KioskAdapterConfigMapping>();
})
.BuildConfiguration().BuildSessionFactory();
}
这是我的(流利的)映射:
public ServiceMapping()
{
Table("tblServices");
Id(x => x.Id, "ServiceId");
Map(x => x.Name);
}
public ContactMapping()
{
Table("tblContacts");
Id(x => x.Id, "ContactId");
Map(x => x.EmployeeId);
HasManyToMany(x => x.EmployeeServices)
.Table("lnkEmployeeService")
.ParentKeyColumn("EmployeeId")
.PropertyRef("EmployeeId")
.ChildKeyColumn("ServiceId")
.NotFound.Ignore();
}
会议如何结束?某些数据库记录在“lnkEmployeeService”表中没有任何记录,但所有外键都已就位且有效。此外,链接表确实有额外的列,实际上是与其他列的复合键,但我不关心其余的数据。
答案 0 :(得分:1)
问题隐藏在这样一个事实中:EmployeeServices
集合通过非唯一值“EmployeeId”映射到联系人。
换句话说,让我们假设三个联系人
ContactId, EmployeeId
1 , 1
2 , 2
3 , 2
现在,我们指示NHibernate做好准备,加载3个集合。对于每个联系人,他们将/应该/必须是唯一的。所以在ISession中,它们可以通过它们的唯一标识符来保存。在NOT属性-ref映射的情况下,它们将是:
CollectionId - Collection
1 - the first collection of all Services related to contact with ID 1
2 - the first collection of all Services related to contact with ID 2
3 - the first collection of all Services related to contact with ID 3
但我们确实遇到了问题,因为我们的集合的唯一标识符是
CollectionId - Collection
1 ...
2 ...
2 - here we go... this (collection) or the previous
must now be removed from a session...
no way how to load/handle it any more
密钥必须是唯一的,这就是重点,即使这是property-ref
。在文档的不同位置,我们可以看到5.1.10. many-to-one:
property-ref属性应仅用于映射旧数据 其中外键引用关联表的唯一键 除主键外。
虽然没有解释<bag>
映射,但逻辑仍然是相同的
答案 1 :(得分:0)
我认为问题在于你在一个包含在使用块中的IDisposable上调用Dispose。使用块相当于编写
var myDisposable = new SomeIDisposableImplementation();
try { ... }
finally
{
if(myDisposable != null) myDisposable.Dispose();
}
在您的代码中,Dispose被调用两次。我的猜测是导致问题,但我无法在简单的测试中复制异常。