This question is locked. New answers and comments are not allowed.
Hello,
How i can map with Data Access Fluent Mapping the following object:
The table Person have:
Id - decimal
document - varchar
Thanks.
How i can map with Data Access Fluent Mapping the following object:
//this class have a tablepublic class Person : IEntity{ public int Id {get; set;} public Document Document {get; set;}}//this class haven't a tablepublic class Document{ public string Document {get; set;}}The table Person have:
Id - decimal
document - varchar
Thanks.