我试图将对象插入SQLite InMembory数据库,如下所示:
private void button1_Click(object sender, EventArgs e)
{
var sessionFactory = CreateSessionFactory();
using (var session = sessionFactory.OpenSession())
{
Person p = new Person { Age = 25, FirstName = "Dariusz", LastName = "Smith" };
session.SaveOrUpdate(p);
//transaction.Commit();
}
}
private static ISessionFactory CreateSessionFactory()
{
return Fluently.Configure()
.Database(
SQLiteConfiguration.Standard.InMemory().ShowSql())
.Mappings(m => m.FluentMappings.AddFromAssemblyOf<Person>())
.BuildSessionFactory();
}
但我得到了错误:"SQLite error\r\nno such table: Person"
只是为了澄清:我使用InMemory选项。
我也在使用FluentNhibernate和映射:
public class PersonMap : ClassMap<Person>
{
public PersonMap()
{
//Table("Person") doesn't resolve my problem
Id(x => x.Id);
Map(x => x.FirstName);
Map(x => x.LastName);
Map(x => x.Age);
}
}
我做错了什么?提前谢谢。
答案 0 :(得分:20)
我知道这是一个老帖子,
我遇到了同样的问题,实际上我完全写了架构导出。但例外是直到出现。
问题是您需要使用打开的会话来执行架构导出。所以你需要修改你的配置。
ISessionFactory session = Fluently.Configure()
.Database(SQLiteConfiguration.Standard.InMemory())
.Mappings(m => m.FluentMappings.AddFromAssemblyOf<MessagingDescriptorMap>())
.ExposeConfiguration(c =>
{
config = c; //pass configuration to class scoped variable
})
.BuildSessionFactory();
按OpenSession()
进行会话后,使用该会话提供SchemaExport.Execute
ISession session = GetSessionFactory().OpenSession();
//the key point is pass your session.Connection here
new SchemaExport(config).Execute(true, true, false, session.Connection, null);
我希望它会帮助一些面临同样问题的身体。
注意强>
我使用了NHibernate 2.1.2,Fluent NHibernate 1.1和.Net 3.5
答案 1 :(得分:4)
您需要在发送任何请求之前创建表结构。一种方法是使用NHibernate.Tool.hbm2ddl.SchemaExport
。你可以看一下this example。另一种方法是手动完成,即CREATE TABLE Person ...
。当然SchemaExport
的优点是,如果修改映射,它将自动反映生成的数据库模式。
答案 2 :(得分:4)
正如Darin Dimitrov所说,您需要导出架构。幸运的是,有一种很好的方法可以使用Fluent NH:)
return Fluently.Configure()
.Database(SQLiteConfiguration.Standard.InMemory().ShowSql())
.Mappings(m => m.FluentMappings.AddFromAssemblyOf<Person>())
.ExposeConfiguration(BuildSchema)
.BuildSessionFactory();
......其中BuildSchema是一种方法:
private void BuildSchema(Configuration cfg)
{
new SchemaExport(cfg)
.Create(false, true);
}