I have an interface named IEntity which till now has one concrete class named Entity, this interface has a read only property. I'd rather to map the interface,but because an interface cant have a private field,i cant use option camelcase field with prefix option to map it,so what can I do?
public interface IEntity
{public readonly string Name{get;} }
public class Entity:IEntity
{public readonly string Name{get;}}
public class EntityMap:ClassMap<IEntityMap>
{
//how to map the readonly property
}