随笔分类 - Linq
摘要:事情的起因是公司一个小伙子问了我个问题 “海哥,来帮我看下这段代码怎么不行” Func<Report,bool> nameFilter = x=>x.Name == "test"; DbContext.Report.Where(x=>x.State==1 && nameFilter(x)); 我一看
阅读全文
摘要:sql中的连接 sql中的表连接有inner join,left join(left outer join),right join(right outer join),full join(full outer join),cross join 在此基础上我们能扩展出 left excluding j
阅读全文
摘要:LINQ to DataSet 为DataRow类提供用于访问列值的扩展方法:Field方法和SetField方法。这些方法使开发人员能够更轻松地访问列值,特别是 null 值。DataSet使用Value来表示 null 值,而 LINQ 使用 .NET Framework 2.0 中引入的可以为...
阅读全文