Alexey Pelykh
unread,Feb 20, 2012, 8:49:26 AM2/20/12Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to NHibernate Contrib - Development Group
This code generates exception that type was not specified:
[Id(0, Column = "_id")]
[Generator(1, Class = "native")]
public long Id { ... }
This does not:
[Id(0, Column = "_id", TypeType = typeof(long))]
[Generator(1, Class = "native")]
public long Id { ... }
Why? Properties determine their types quite fine..