我正在使用Subsonic SimpleRepository
我有一个班级:
public class X{public string abc {get; set;}private string def {get; set;}}
属性“def”仅在该类中设置,我不希望该属性在外部可见,但出于某种原因,当我使用Repo.Save(x)保存对象时,私有属性不会持久保存到DB
任何帮助?
答案 0 :(得分:1)
设置两个数据模型,一个代表前端的X(公共,可见),另一个代表后端的X(私有,隐藏):
namespace App.BackEnd // classes here are used for database storage
{
public class X
{
public string abc { get; set; }
public string def { get; set; }
public FrontEnd.X ToFrontEnd()
{
return new FrontEnd.X
{
abc = abc
};
}
}
}
namespace App.FrontEnd // classes here are used for public interfaces
{
public class X
{
public string abc { get; set; }
}
}