Is it possible to create a convention that says if class is similar to
MyClassA
IList<SomeType> SomeTypesCollection {get;set;}
That would be equivalent to
Override<MyClassA>(a => a.HasManyToMany(x=>x.SomeTypesCollection).Table
("SomeTypes"))
And a convention that would be like
AnotherClassB
IList<DifferentType> DifferentTypes {get;set;}
That would be equivalent to
Override<AnotherClassB>(a => a.HasManyToMany(x=>x.DifferentTypes))
--
You received this message because you are subscribed to the Google Groups
"nhusers" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/nhusers?hl=en.