11 2016 档案
摘要:先看看下面的代码,用了 .AsEnumerable(): 1 var query = (from a in db.Table2 where a = SomeCondition3 select a.SomeNumber).AsEnumerable();4 5 int recordCount = que
阅读全文
摘要:sql语句把字段中的某个字符去掉 例如: 老师,学生,家长头像:
阅读全文
摘要:一、设置webapi返回json格式 在App_Start下的WebApiConfig的注册函数Register中添加下面这代码 二、设置返回Json键值统一为小写 新建一个类并继承自DefaultContractResolver,重写ResolvePropertyName方法, 在WebApiCo
阅读全文