views:

18

answers:

1

This is a set collection:

<set access="field.camelcase-underscore" cascade="save-update" inverse="true" lazy="true" name="employees" table="TeamEmployee" mutable="true">

How do I set the name attribute?

+2  A: 

Fluently :-)

HasMany(x => x.SetName)
Diego Mijelshon
thanks Diego ... but how do I set a naming convention for this attribute?
Rookian
The `name` attribute always corresponds to the property name. There's nothing you can customize there.
Diego Mijelshon