我在使用nhibernate的web应用程序中使用流畅的映射(只需设置它!)。
我是否使用fluent作为数据库配置文件,或者我使用流利的?
答案 0 :(得分:1)
是的,您也可以使用Fluent NHibernate进行配置,使用他们所谓的Fluent配置。您可以找到Fluent配置here的文档。
以下是使用Fluent NHibernate进行NHibernate配置时的样子:
var sessionFactory = Fluently.Configure()
.Database(SQLiteConfiguration.Standard.InMemory)
.Mappings(m =>
m.FluentMappings
.AddFromAssemblyOf<YourEntity>())
.BuildSessionFactory();