如何在 NHibernate 3.2 按代码映射中将整个映射设置为只读?

发布于 2024-12-08 20:03:06 字数 100 浏览 0 评论 0原文

我刚刚开始了解 NHibernate 3.2 及其“通过代码映射”功能,并将 Fluent 映射迁移到它。 是否有相当于流畅的“ReadOnly();”函数,使整个映射只读? 提前致谢。

I'm just getting up to speed with NHibernate 3.2 and its "mapping by code" feature, and migrating our Fluent mapping over to it.
Is there an equivalent of the fluent "ReadOnly();" function, to make the entire mapping read only?
Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

悲凉≈ 2024-12-15 20:03:06

在映射中使用 Mutable(false)。

阅读这篇文章以获取相应的 hbm 文件映射,我可以从中推断出这一点。

http://davybrion.com/blog/2007/08/ nhibernate 中的只读数据/

Use Mutable(false) in the mapping.

Read this post for corresponding hbm file mapping from where I could infer this.

http://davybrion.com/blog/2007/08/read-only-data-in-nhibernate/

无戏配角 2024-12-15 20:03:06

使用 PropertyMapper 操作定义访问样式:

public class EntityMapping : ClassMapping<Entity>
{
     public EntityMapping()
     {
         Id(m => m.Id, map => map.Generator(Generators.HighLow));
         Property(m => m.Name, map => map.Access(Accessor.ReadOnly));
     }
}

Use PropertyMapper action to define access style:

public class EntityMapping : ClassMapping<Entity>
{
     public EntityMapping()
     {
         Id(m => m.Id, map => map.Generator(Generators.HighLow));
         Property(m => m.Name, map => map.Access(Accessor.ReadOnly));
     }
}
浅语花开 2024-12-15 20:03:06

对于那些寻求流利的人来说,您正在寻找 ReadOnly() ,如下所示:

public class FooMap : ClassMap<Foo> {

    public FooMap() {
        Schema("bar");
        Table("foo");
        LazyLoad();

        ReadOnly();

        CompositeId()
            .KeyProperty(x => x.ID, "ID")
            .KeyProperty(x => x.Year, "Year");
        Map(x => x.FirstField).Column("FirstField").Length(1);
    }
}

For those looking for this in fluent you are looking for ReadOnly() as below:

public class FooMap : ClassMap<Foo> {

    public FooMap() {
        Schema("bar");
        Table("foo");
        LazyLoad();

        ReadOnly();

        CompositeId()
            .KeyProperty(x => x.ID, "ID")
            .KeyProperty(x => x.Year, "Year");
        Map(x => x.FirstField).Column("FirstField").Length(1);
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文