My entity has besides other properties Keyword property which is of type list of strings.
public virtual IList<string> Keywords { get; set; }
so I tried to map this property using conformist mapping by code approach simple as possible like this
Property(x => x.Keywords);
but I'm getting following exception
NHibernate.MappingException : Could not determine type for: System.Collections.Generic.IList`1[[System.String, mscorlib, Version=4.0.0.0,.....
Keywordsrepresented in your database if you don't mind me asking ?KeyWordsin DB, eg: I have a table Document with a relation many to many with a table KeyWord.