I've been wondering if its possible to have NH map some properties on
an entity from a schema-free json (or xml) column
e.g. map a db table like
Id, Name, Json
1, Marmaduke, {address1: Windsor Castle, address2: London }
to a class like
class Person{
int Id{get;set;}
string Name {get;set;}
string Address1 {get;set;}
string Address2 {get;set;}
}
Is there a way to do this, or an extension point I could use to enable
this?
--
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.