ORM:Chloe

ORM的一种:Chloe
注意实体类模板
特色:多表连接

利用chloe实现对各表的增删查改的管理,判断现有物料是否能够支持生产规模。

一开始报错:

IQuery<ProductionPlans> q = sqlcontext.Query<ProductionPlans>();
strJson = q.ToList().ToJson();
writeJsonBack(context, strJson);

ORM:Chloe

原因:IQuery对象不支持被序列化
解决:先转成list再转json

 

strJson = q.ToList().ToJson();

 

  

 

上一篇:C# 实现单实例程序


下一篇:c# – 如何将IEnumerable>转换为List?