解决 DevExpress.Xpo.Exceptions.SessionMishingException

发布于 2024-11-27 14:32:12 字数 465 浏览 0 评论 0原文

我将一个对象添加到另一个对象,如下所示:

Foo foo = new Foo();
AnotherClass.bar.add(foo);  // bar is getting assigned with dependency injection in AnotherClass

这会导致 DevExpress.Xpo.Exceptions.SessionMishingException ,如下所示:

初始化方法 Test.SetUp 抛出 例外。 DevExpress.Xpo.Exceptions.SessionMishingException: DevExpress.Xpo.Exceptions.SessionMishingException: “Foo”对象属于不同的会话。

如何从 AnotherClass 获取会话以避免此错误?

I'm adding an object to another object like so:

Foo foo = new Foo();
AnotherClass.bar.add(foo);  // bar is getting assigned with dependency injection in AnotherClass

This causes a DevExpress.Xpo.Exceptions.SessionMixingException as follows:

Initialization method
Test.SetUp threw
exception. DevExpress.Xpo.Exceptions.SessionMixingException:
DevExpress.Xpo.Exceptions.SessionMixingException: The
'Foo' object belongs to a different session.

How does one grab get a hold of the session from AnotherClass to avoid this error?

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

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

发布评论

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

评论(1

み青杉依旧 2024-12-04 14:32:12

您可以简单地在 AnotherClass 的会话中加载 foo 对象,

foo = AnotherClass.Session.GetObjectByKey<Foo>(foo.Oid);
AnotherClass.bar.add(foo);

您可以在 http://www.devexpress.com/Products/NET/ORM/articles/SessionManagementCaching.xml

You can simply load the foo object within AnotherClass' Session with,

foo = AnotherClass.Session.GetObjectByKey<Foo>(foo.Oid);
AnotherClass.bar.add(foo);

You can read more how the session works at http://www.devexpress.com/Products/NET/ORM/articles/SessionManagementCaching.xml

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文