Reputation: 103517
I want my nhibernate entity property to be nullable.
the column is a nvarchar(MAX) in sql server, and it can be NULL.
How do I map this using the xml mapping?
Upvotes: 0
Views: 183
Reputation: 26940
not-null="false"
should do the trick. Or leave it as-is since the default is to allow nulls.
Upvotes: 0