摘要: Linq 中按照多个值进行分组(GroupBy) .GroupBy(x => new { x.Age, x.Sex }) group emp by new { emp.Age, emp.Sex } into g // 实现多key分组的扩展函数版本 var sums = empList .GroupBy(x => new { x.Age, x.Sex }) ... 阅读全文
posted @ 2016-06-04 22:22 shiningrise 阅读(2758) 评论(0) 推荐(0) 编辑
摘要: 必须安装 Microsoft.Owin.Host.SystemWeb 阅读全文
posted @ 2016-06-04 21:04 shiningrise 阅读(125) 评论(0) 推荐(0) 编辑
摘要: http://www.crsky.com/soft/72908.html 阅读全文
posted @ 2016-06-04 18:04 shiningrise 阅读(189) 评论(0) 推荐(0) 编辑
摘要: 开始 EF6.1也出来不少日子了,6.1相比6.0有个很大的特点就是新增了System.Data.Entity.Infrastructure.Interception 命名空间,此命名空间下的对象可以允许我们更加方便的了解到EF运行时的一些信息,当然我们最想看的还是EF生成的Sql语句,话不多讲,开 阅读全文
posted @ 2016-06-04 00:03 shiningrise 阅读(1580) 评论(1) 推荐(3) 编辑
// 侧边栏目录 // https://blog-static.cnblogs.com/files/douzujun/marvin.nav.my1502.css