如何为 nvarchar max 进行扩展?流畅的 nHibernate +休眠
我一直在寻找如何做到这一点,但我无法让它发挥作用。我看到很多使用 PropertyMap 或 IProperty 的教程
,但我不知道要使用什么 using 语句,并且 VS intellisense 也不知道
http://serialseb.blogspot.com/2009/01/ Fluent-nhibernate-and-nvarcharmax.html
我正在使用 Fluent nhibernate 和 nihbernate 3.0。那么他们删除了这些吗?
I been looking around for how to do this but I can't get it to work. I seen many tutorials that using
PropertyMap or IProperty but I can't figure out what using statement to use and VS intellisense does not know either
http://serialseb.blogspot.com/2009/01/fluent-nhibernate-and-nvarcharmax.html
I am using fluent nhibernate and nihbernate 3.0. So did they remove these?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我尚未测试,但尝试使用
PropertyBuilder.Length(int length)
方法扩展PropertyBuilder
。https://github.com/jagregory /fluent-nhibernate/blob/master/src/FluentNHibernate/Mapping/Builders/PropertyBuilder.cs
I haven't tested, but try extending
PropertyBuilder
, using the methodPropertyBuilder.Length(int length)
.https://github.com/jagregory/fluent-nhibernate/blob/master/src/FluentNHibernate/Mapping/Builders/PropertyBuilder.cs
看来我使用 PropertyPart 是有效的。
It seems if I used PropertyPart that works.