c# – 什么是合适的NHibernate / Iesi.Collections.Generic.ISet替换?

前端之家收集整理的这篇文章主要介绍了c# – 什么是合适的NHibernate / Iesi.Collections.Generic.ISet替换?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在最新版本的Iesi.Collections中缺少Iesi.Collections.Generic.ISet.
似乎有三种选择:

> LinkedHashSet
> ReadOnlySet
> SynchronizedSet

Iesi.Collections.Generic.ReadOnlySet似乎最接近ISet,文档说明:

... although it's advertised as immutable it really isn't. 
Anyone with access to the wrapped set can still change the set.

似乎ReadOnlySet是ISet的最佳替代品?目前,实现是通过公共方法向集合添加项目,因此它似乎是最合适的.替代方案(IList,bag?)似乎需要更多资源或不那么快/有效)?还有更好的选择吗? (该列表不应该有重复,可以手动验证)

我会做的事情如下:

public virtual ISet<MyClass> MyClass
{
    get { return this.myClass }
}

public virtual void AddItem(MyClass item)
{
    ... // Null checks and initialize ISet if null
    myClass.Add(item)
}

基本上它归结为替代品,是否存在没有负面影响的替代品,如速度等?

解决方法

好吧,从Nuget获得Iesi.Collections仅提供v.4.

这里的解决方案适用于NHibernate 3.x,但这个问题可能与NHibernate 4有关. Issuewith NHibernate,Fluent NHibernate and Iesi.Collection. What would you try next?

删除了Iesi引用并添加了NHibernate,其中包括旧版本的Iesi和ISet.它实际上并没有解决ISet与替代方案,但它确实解决了我的问题所以我可以继续使用ISet.

也许他们会将它添加到NHibernate 4.0版本中,否则它将需要在那时进行转换.

原文链接:https://www.f2er.com/csharp/244577.html

猜你在找的C#相关文章