I am making use of Subsonic SimpleRepository
i have a class:
public class X{public string abc {get; set;}private string def {get; set;}}
property "def" is only set within that class and i don't want the property to be visible externally, but for some reason when i save the object using Repo.Save(x) the private property is not persisted to the DB
Any help?