How can i ignore map property in NHibernate with setter
- by Emilio Montes
i need ignore map property with setter in NHibernate, because the relationship between entities is required. this is my simple model
public class Person
{
public virtual Guid PersonId { get; set; }
public virtual string FirstName { get; set; }
public virtual string SecondName { get; set; }
//this is the property that do not want…