我有以下代码:
var schemaExport = new SchemaExport(cfg);
schemaExport.Drop(false, true);
schemaExport.Create(false, true);
Fluently.Configure()
.Database(MsSqlConfiguration
.MsSql2008
.ConnectionString(connString))
.Mappings(m => m.FluentMappings.AddFromAssemblyOf<ProductMap>())
.ExposeConfiguration(CreateSchema)
.BuildConfiguration();
上面的代码成功创建了在其他地方定义的两个表,但是当我在 SSMS 中执行“编辑前 200 行”时,我发现单元格是只读的。
在代码文件、映射或其他任何地方都没有明显提及任何只读指令。
为什么模式生成为只读?
我在 Windows 7 Ultimate x86 上使用 VS 2010、.NET 4 客户端固件、FluentNHibernate 2.0.3.0、NHibernate 4.0.0.4000、Iesi.Collections 4.0.0.4000。
以上代码来自本书:NHibernate 3 Beginner's Guide [2011]