摘要:
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... 阅读全文