Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
SubSonic SimpleRepository 似乎对对外关系没有太多支持。如何在我的代码模型中自然保留并从数据库加载外部关系?
FK 是一个数据库问题 - Simple Repo 可以尽可能简单地工作,因此如果您有一组子对象,您可以根据需要加载它们:
公共 IEnumerable Kids{ get{ return Kids.All().Where(x=>x.ParentID==this.ID; } }
你必须用手滚动这个。如果您想“渴望”加载它 - 请根据具体情况进行。