In Fluent Nhibernate what is the effect of specifying AsSet() on a HasMany or HasManyToMany relationship?
Assuming the type of the mapped property is an Iesi Set, is there any difference between:
HasMany(x => x.MySetProperty)
.AsSet();
and
HasMany(x => x.MySetProperty);