Subsonic 简单存储库 - 保留私有财产
我正在使用 Subsonic SimpleRepository
我有一个类:
public class X{public string abc {get; set;}private string def {get; set;}}
属性“def”仅在该类中设置,并且我不希望该属性在外部可见,但由于某种原因,当我使用 Repo.Save(x 保存对象时)私有财产没有持久化到数据库
有什么帮助吗?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
设置两个数据模型,一个代表前端的 X(公共、可见),一个代表后端的 X(私有、隐藏):
Set up a two data models, one that represents X in the front-end (public, visible) and one that represents X in the back-end (private, hidden):