How to set up auto mapping to map System.Collections.Generics.ISet<T> correctly?
I tried implementing IHasManyConvention, but in intellisense it seems that IOneToManyCollectionInstance does not have anything for that(?)
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
This is not up to Fluent NHibernate, because NHibernate just doesn’t have any built-in implementation for
System.Collections.Generics.ISet<T>.If you really want to use .NET’s ISet instead of Iesi.Collections, for now you’ll have to write it yourself. Use PersistentGenericSet for reference.