我更新了流利的nhibernate 1.2
现在我的一些东西不起作用。
public static PropertyBuilder NvarcharWithMaxSize(this PropertyBuilder map)
{
return map.Length(10000);
}
我必须为PropertyBuilder(using System.Reflection.Emit;
)导入一个新的用法,如果这是正确的话我不知道。
Map.Length似乎不再存在(using FluentNHibernate.Mapping.Builders;
)。
有人知道我现在需要什么吗?
答案 0 :(得分:1)
Yup,1.2版摆脱了FluentNHibernate.Mapping.Builders命名空间。看到这个非常相似的question and answer for more details.