> --
> You received this message because you are subscribed to the Google Groups "Fluent NHibernate" group.
> To post to this group, send email to fluent-n...@googlegroups.com.
> To unsubscribe from this group, send email to fluent-nhibern...@googlegroups.com.
> For more options, visit this group at http://groups.google.com/group/fluent-nhibernate?hl=en.
>
Anyway, I found the issue by comparing the hbm files. It turns out
that I have to also specify OneToMany() into the mapping as well
otherwise it is trying to make it ManyToMany.
Old Mapping
=========
HasMany<Identification>(x => x.Ids)
.AsMap<string>(x => x.Type)
.Cascade.AllDeleteOrphan();
New Mapping
==========
HasMany(x => x.Ids)
.DictionaryKey<string>("Type")
.OneToMany()
.Cascade.AllDeleteOrphan();
Thanks!
--
Karlkim SK
Go Vandy!