摘要:
日常开发之中,列表与独立的实体对象操作,是一样的重要,在XPO中是通过XpoCollection来管理的,Gentle里面又是什么样子呢? 根据Gentle的文档中的示例如下: staticpublicIListListAll { get{returnBroker.RetrieveList(typeof(User... 阅读全文
摘要:
一个简单的User类 public class User { privateint userId; private string userName; public User( int userId, string userName ) { this.userId = userId; this.userName... 阅读全文