一丶基本语法
(from a in Table where a.id="001" select a).Tolist();

隐式内连接
from a in table1 join b in table2 on a.id equals b.id select new {
a.id,b.id
}
隐式外连接
from a in table1 from b in table2 where a.id==b.id select new {}
左外连接
from a in table1 join b in table2 on a.id equals b.id into xx from c in xx.DefaultIfEmpty()
select new {

}

group by into 分组
(from u in table1 group u by u.Sex into xx select xx).Tolist

最新文章

  1. python学习笔记-多进程
  2. Deep Learning 5_深度学习UFLDL教程:PCA and Whitening_Exercise(斯坦福大学深度学习教程)
  3. C++中不能声明为虚函数的有哪些函数
  4. Android应用目录结构分析
  5. MVC5 烂笔头
  6. openssl数字证书私钥删除私钥密码
  7. poj 3237 Tree(树链剖分,线段树)
  8. 【转载】python:特殊函数使用方式
  9. Asp.net MVC学习
  10. uva 10581 - Partitioning for fun and profit(记忆化搜索+数论)
  11. SVN中正确的add操作和delete操作
  12. es6 语法
  13. DateFormat 竟然是非线程安全的?!!!!!
  14. 基于Kubernetes的WAF集群介绍
  15. 测试环境-memcached安装与说明
  16. Git时光机穿梭之管理修改
  17. python全栈开发 * 30知识点汇总 * 180713
  18. 14. js字符串截取substring用法
  19. Loader Lock引起的一个Bug
  20. 漫谈NIO(3)之Netty实现

热门文章

  1. Visual Assist X破解版安装(vs2010助手)
  2. JAVA学习(三):Java基础语法(变量、常量、数据类型、运算符与数据类型转换)
  3. HttpClient的Post和Get訪问网页
  4. LeetCode 781. Rabbits in Forest (森林中的兔子)
  5. USACO zerosum DFS 1A
  6. param size: The requested size, in points.
  7. 360p以上
  8. ios ionic 装平台 笔记
  9. 关于三星手机调用相机返回后activity被回收的问题
  10. mysql创建用户,并授予权限