I have this in my entity:
public virtual Iesi.Collections.Generic.ISet<long> Blas { get; set; }
and this for my mapping:
mapping.HasMany(x => x.Blas).AsSet().Element("Value", m => m.Type<long>());
This creates the relevant tables and I add data like this:
X.Blas = new Iesi.Collections.Generic.HashedSet<long>();
X.Blas.Add(some_long);
This adds values to the object but the values in Blas are never persisted (everything else of X is).
Can anyone see anything wrong?
Thanks.
Christian