摘要: 1. 自定义非受管实体类namespace IOT{ public class CustomerProjection{ public int ID = 0; public string Name = ""; public CustomerProjection(int id, string name){ ID = id; Name = name; } }}2. 在实体类属性添加对自定义非受管实体类的引入[Imprt(typeof(IOT.CustomerProjection), "CustomerProjection")][ActiveRecord... 阅读全文
posted @ 2011-12-13 17:33 不搽雪花膏 阅读(445) 评论(0) 推荐(0) 编辑