Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
コンベンション.Cache().ReadWrite()で-Relationsを設定する方法を探しています。HasMany()自動マッピングは使用しません。誰かが私がこれをどのように行うことができるか考えていますか?
.Cache().ReadWrite()
HasMany()
FNH 1.3 を使用すると、これが可能になります
public class CacheConvention : IHasManyConvention { public void Apply(IOneToManyCollectionInstance instance) { instance.Cache.ReadWrite(); } }
いつ、どのバージョンで導入されたのかわかりません