Fluent Nhibernate Optimistick 锁定不起作用

发布于 2024-12-10 01:27:15 字数 1128 浏览 0 评论 0原文

在我的应用程序中,我已将应用程序设置为使用该策略来防止 2 个不同的对话处理相同的数据。但不起作用,我不知道为什么。

问题:

1) User1: 
Retrive rowversion from database: 0x00000000001063B0
Do some modification
2) User2:
Retrive rowversion from database: 0x00000000001063B0
Do some modification
3) User1:
Update the data
New rowversion: 0x00000000001063B2
4) User2:
Update the data
Should trown a StaleObjectStateException, 
but the rowversion is updated to 0x00000000001063B4

配置:

我的应用程序中有 Fluent Nhibernate 配置:

public static ClassMap<T> RowVersionTracking<T>(this ClassMap<T> classMap) where T : DomainObject
    {
        classMap.OptimisticLock.Version();

        classMap
            .Version(x => x.RowVersion)
            .Column(DomainObject.VersionPropertyName)
            .CustomType("BinaryBlob")
            .CustomSqlType("timestamp")
            .Generated.Always()
            .UnsavedValue("null");


        return classMap;
    }

例如,当我保存继承此属性的 CustomerOrder 实例时:

在映射中具有:

...
   this.RowVersionTracking();
...

最好的问候, 铁托

In my application I have set the application to use the strategy to prevent 2 different conversations to work at the same data. But is not working, I don't know why.

PROBLEM:

1) User1: 
Retrive rowversion from database: 0x00000000001063B0
Do some modification
2) User2:
Retrive rowversion from database: 0x00000000001063B0
Do some modification
3) User1:
Update the data
New rowversion: 0x00000000001063B2
4) User2:
Update the data
Should trown a StaleObjectStateException, 
but the rowversion is updated to 0x00000000001063B4

CONFIGURATION:

I have in my application the Fluent Nhibernate configuration:

public static ClassMap<T> RowVersionTracking<T>(this ClassMap<T> classMap) where T : DomainObject
    {
        classMap.OptimisticLock.Version();

        classMap
            .Version(x => x.RowVersion)
            .Column(DomainObject.VersionPropertyName)
            .CustomType("BinaryBlob")
            .CustomSqlType("timestamp")
            .Generated.Always()
            .UnsavedValue("null");


        return classMap;
    }

And when I save for example, an instance of CustomerOrder that inherits this property:

Has in the mappings:

...
   this.RowVersionTracking();
...

best regards,
Tito

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文