Mono 2.10.5 上流畅的 nhibernate 深度克隆错误
我在我的项目中使用流畅的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为您应该在 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).