Mono 2.10.5 上流畅的 nhibernate 深度克隆错误

发布于 2024-12-11 08:24:54 字数 741 浏览 0 评论 0原文

我在我的项目中使用流畅的 nhibernate。在内部,Fluent nhibernate 使用下面的代码来执行 DeepClone (参考) :

using (var stream = new MemoryStream()) {
    var formatter = new BinaryFormatter();

    formatter.Serialize(stream, obj);
    stream.Position = 0;

    return (T)formatter.Deserialize(stream);
}

不幸的是,这在 mono 上不起作用,因为这些代码将调用

System.Collections.Generic.HashSet<T>.GetObjectData 
(System.Runtime.Serialization.SerializationInfo info, StreamingContext 
context)

尚未实现的代码(抛出NotImplementedException)。

有谁知道适用于 mono 的深度克隆代码?

I'm using fluent nhibernate on my project. Internally, fluent nhibernate use this code below to perform DeepClone (reference) :

using (var stream = new MemoryStream()) {
    var formatter = new BinaryFormatter();

    formatter.Serialize(stream, obj);
    stream.Position = 0;

    return (T)formatter.Deserialize(stream);
}

Unfortunately, this doesn't work on mono because those code will call

System.Collections.Generic.HashSet<T>.GetObjectData 
(System.Runtime.Serialization.SerializationInfo info, StreamingContext 
context)

which not yet implemented (throw NotImplementedException).

Does anyone know deep clone codes that works on mono ?

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

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

发布评论

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

评论(1

木落 2024-12-18 08:24:54

我认为您应该在 bugzilla.xamarin.com 中报告错误(标题为“FluentNHibernate 不适用于 Mono”或其他内容,而不是只关注他们可能已经知道的 NIE)。

I think you should report a bug in bugzilla.xamarin.com (with a title like "FluentNHibernate doesn't work with Mono" or something, rather than focusing just on the NIE which they already may know about).

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