应无所住,而生其心
排名
1
文章
860
粉丝
112
评论
163
net core webapi post传递参数
庸人 : 确实坑哈,我也是下班好了好几次,发现后台传递对象是可以的,但...
百度编辑器自定义模板
庸人 : 我建议换个编辑器,因为现在百度富文本已经停止维护了,用tinymec...
ICP备案 :渝ICP备18016597号-1
网站信息:2018-2025TNBLOG.NET
技术交流:群号656732739
联系我们:contact@tnblog.net
公网安备:50010702506256
欢迎加群交流技术

Entity Framework常用查询,EF join,EF多表联查,原生sql。EF 多表查询。AsNoTracking

20289人阅读 2019/5/6 15:58 总访问:5185780 评论:2 收藏:2 手机
分类: EF


直接执行sql语句

  1.  //全表查询
  2.  List<Users> ulist = se.Database.SqlQuery<Users>("select * from users").ToList();

   接条件很也方便 

  1.  //接条件查询
  2.  List<Users> ulist = se.Database.SqlQuery<Users>("select * from users where number=@number"new SqlParameter("number""NS001")).ToList();


执行添加,删除,修改等操作

  1.  int count =Database.ExecuteSqlRaw(sql,params);

   执行添加,删除,修改等操作 方法2:

  1. context.Database.ExecuteSqlInterpolated()



直接执行存储过程语句

  1. //执行存储过程并取得返回值
  2. int prlr = myc.Database.SqlQuery<int>("exec [ProSelectCount] '1'").SingleOrDefault();


AsNoTracking()不跟踪上下文可以提高查询效率

  1. context.Article.AsNoTracking()



Ef 两表Join

linq写法:

  1. //两表join linq写法
  2. var query = from u in oae.Users
  3.         join p in oae.Parent on u.Id equals p.ParentId
  4.         select new
  5.         {
  6.            username = u.UserName,
  7.            father = p.Father
  8.         };

lamdba写法:

  1. /*
  2.    第一个参数:   join的表
  3.    第二,三参数: 连接条件
  4.    第四个参数:   返回值
  5. */
  6.    var query = oae.Users.Join(oae.Parent, a => a.Id, b => b.ParentId, (a, b) => new
  7.    {
  8.      username = a.UserName,
  9.      fahter = b.Father
  10.    });



Ef 两表 left Join

linq写法:

  1. //两表left join linq写法
  2. var query = from u in oae.Users
  3.         join p in oae.Parent on u.Id equals p.ParentId into jtemp
  4.         from leftjoin in jtemp.DefaultIfEmpty()
  5.         select new
  6.         {
  7.          username = u.UserName,
  8.          father = leftjoin.Father
  9.         };

lamdba写法:

  1. //两表left join lamdba写法
  2. var query = oae.Users.GroupJoin(oae.Parent, a => a.Id, b => b.ParentId, (a, b) => new
  3.             {
  4.                 username = a.UserName,
  5.                 parent = b
  6.             }).SelectMany(a => a.parent, (m, n) => new
  7.             {
  8.                 username = m.username,
  9.                 father = n.Father
  10.             });

lamdba的写法主要用到了groupjoin与SelectMany,这里简单解释一下:

groupjoin:    用于查询一对多的关系很方便,所以得数据格式就是1对多的关系

SelectMany:    可以解析集合中含有集合的情况(也就是1对多的表现)为单一对象



Ef三表Join

linq写法:

  1. //三表join linq写法
  2. var queru = from u in oae.Users
  3.         join p in oae.Parent on u.Id equals p.ParentId
  4.         join s in oae.Score on u.Id equals s.UsersId
  5.         select new
  6.         {
  7.          username = u.UserName,
  8.          fahter = p.Father,
  9.          sub = s.Sub,
  10.          score = s.Score1
  11.         };

lamdba写法:

  1. //三表join lamdba写法
  2. var query = oae.Users.Join(oae.Parent, a => a.Id, b => b.ParentId, (a, b) => new
  3.        {
  4.           uid = a.Id,
  5.           username = a.UserName,
  6.           father = b.Father
  7.         }).Join(oae.Score, a => a.uid, b => b.UsersId, (m, n) => new
  8.          {
  9.           username = m.username,
  10.           father = m.father,
  11.           sub = n.Sub,
  12.           score = n.Score1
  13.         });

其实和两表join类似,往后面点就行了


Ef三表left Join

Linq写法:

  1. //三表left join linq写法
  2. var query = from u in oae.Users
  3.         join p in oae.Parent on u.Id equals p.ParentId into ptemp
  4.         join s in oae.Score on u.Id equals s.UsersId into stemp
  5.         from leftp in ptemp.DefaultIfEmpty()
  6.         from lefts in stemp.DefaultIfEmpty()
  7.         select new
  8.         {
  9.            username = u.UserName,
  10.            father = leftp.Father,
  11.            sub = lefts.Sub,
  12.            score = lefts.Score1
  13.          };

lamdba写法:

  1. //三表left join lamdba写法
  2. var query = oae.Users.GroupJoin(oae.Parent, a => a.Id, b => b.ParentId, (a, b) => new
  3.         {
  4.             uid = a.Id,
  5.             username = a.UserName,
  6.             parent = b
  7.         }).GroupJoin(oae.Score, a => a.uid, b => b.UsersId, (m, n) => new
  8.         {
  9.             username = m.username,
  10.             uid = m.uid,
  11.             score = n,
  12.             parent = m.parent
  13.         }).SelectMany(a => a.parent.DefaultIfEmpty(), (m, n) => new
  14.         {
  15.             username = m.username,
  16.             fahter = n.Father,
  17.             score = m.score
  18.         }).SelectMany(a => a.score.DefaultIfEmpty(), (m, n) => new
  19.         {
  20.             usernaem = m.username,
  21.             father = m.fahter,
  22.             sub = n.Sub,
  23.             score = n.Score1
  24.         });

lamdba写法2:上面是现join完在selectmany,也可以先selectmany了在join第三张表

  1. //三表left join lamdba写法2
  2. var query = oae.Users.GroupJoin(oae.Parent, a => a.Id, b => b.ParentId, (a, b) => new
  3.         {
  4.             uid = a.Id,
  5.             username = a.UserName,
  6.             parent = b
  7.         }).SelectMany(a => a.parent.DefaultIfEmpty(), (m, n) => new
  8.         {
  9.             uid = m.uid,
  10.             username = m.username,
  11.             father = n.Father
  12.         }).GroupJoin(oae.Score, a => a.uid, b => b.UsersId, (m, n) => new
  13.         {
  14.             username = m.username,
  15.             father = m.father,
  16.             score = n
  17.         }).SelectMany(a => a.score, (m, n) => new
  18.         {
  19.             username = m.username,
  20.             father = m.father,
  21.             sub = n.Sub,
  22.             score = n.Score1
  23.         });


单表分组函数

linq:

  1. //linq
  2. var query = from score in oae.Score
  3.             group score by score.Sub into grouptemp
  4.             select new
  5.             {
  6.                 sub = grouptemp.Key,
  7.                 sum = grouptemp.Sum(a => a.Score1),
  8.                 max = grouptemp.Max(a => a.Score1),
  9.                 min = grouptemp.Min(a => a.Score1),
  10.                 avg = grouptemp.Average(a => a.Score1)
  11.             };

lamdba:

  1. //lamdba
  2. var query = oae.Score.GroupBy(a => a.Sub).Select(grouptemp => new
  3. {
  4.     sub = grouptemp.Key,
  5.     sum = grouptemp.Sum(a => a.Score1),
  6.     max = grouptemp.Max(a => a.Score1),
  7.     min = grouptemp.Min(a => a.Score1),
  8.     avg = grouptemp.Average(a => a.Score1)
  9. }).Where(a => a.max > 60);
  10. var result = query.ToList();


分组函数后接一点条件

linq:

  1. //linq
  2. var query = from score in oae.Score
  3.             group score by score.Sub into grouptemp
  4.             where grouptemp.Sum(a=>a.Score1)>60
  5.             select new
  6.             {
  7.                 sub = grouptemp.Key,
  8.                 sum = grouptemp.Sum(a => a.Score1),
  9.                 max = grouptemp.Max(a => a.Score1),
  10.                 min = grouptemp.Min(a => a.Score1),
  11.                 avg = grouptemp.Average(a => a.Score1)
  12.             };

linq写法2:

  1. //linq
  2. var query = from score in oae.Score
  3.             group score by score.Sub into grouptemp
  4.             select new
  5.             {
  6.                 sub = grouptemp.Key,
  7.                 sum = grouptemp.Sum(a => a.Score1),
  8.                 max = grouptemp.Max(a => a.Score1),
  9.                 min = grouptemp.Min(a => a.Score1),
  10.                 avg = grouptemp.Average(a => a.Score1)
  11.             } into temp
  12.             where temp.max > 60
  13.             select new
  14.             {
  15.                 sub = temp.sub,
  16.                 sum = temp.sum
  17.             };
  18. var result = query.ToList();


两表分组函数

对某个考生的成绩统计

linq形式:

  1. var query = from u in oae.Users
  2.             join s in oae.Score on u.Id equals s.UsersId
  3.             select new
  4.             {
  5.                 UserName = u.UserName,
  6.                 Score1 = s.Score1
  7.             } into jointemp
  8.             group jointemp by jointemp.UserName into a
  9.             select new ScoreViewModel
  10.             {
  11.                 UserName = a.Key,
  12.                 Count = a.Count(),
  13.                 Max = a.Max(b => b.Score1),
  14.                 Min = a.Min(b => b.Score1),
  15.                 Sum = a.Sum(b => b.Score1),
  16.                 Avg = a.Average(b => b.Score1)
  17.             };
  18. List<ScoreViewModel> result = query.ToList();


三表分组函数

对某个考生的成绩统计,并包含考生父母

linq形式:

  1. var query = from u in oae.Users
  2.             join p in oae.User_Parent on u.Id equals p.UsersId into upjointemp
  3.             from leftjoin in upjointemp.DefaultIfEmpty()
  4.             join s in oae.Score on u.Id equals s.UsersId
  5.             select new
  6.             {
  7.                 UserName = u.UserName,
  8.                 Father = leftjoin.Father,
  9.                 Score1 = s.Score1
  10.             } into jointemp
  11.             group jointemp by new { jointemp.UserName, jointemp.Father } into a
  12.             select new ScoreViewModel
  13.             {
  14.                 UserName = a.Key.UserName,
  15.                 Father = a.Key.Father ?? "孤儿",
  16.                 Count = a.Count(),
  17.                 Max = a.Max(b => b.Score1),
  18.                 Min = a.Min(b => b.Score1),
  19.                 Sum = a.Sum(b => b.Score1),
  20.                 Avg = a.Average(b => b.Score1)
  21.             };
  22. List<ScoreViewModel> result = query.ToList();





未完待续........


欢迎加群讨论技术,1群:677373950(满了,可以加,但通过不了),2群:656732739。有需要软件开发,或者学习软件技术的朋友可以和我联系~(Q:815170684)

评价

Murphy

2019/11/29 9:20:09

看到这个又想起当初学的时候的感觉[嘻嘻]

剑轩:@Murphy哈哈哈哈

2019/11/29 10:34:25 回复

EF删除与批量删除。Entity Framework删除与批量删除

[TOC]EF删除方法1:直接执行数据库int count = oapEntities.Database.ExecuteSqlCommand(&quot;delete from users where id...

EF多种更新方法。EF修改Entity Framework修改。abp vnext ef 更新封装

[TOC] 方法1:直接执行更新的sql语句过于简单不说了 方法2:先查询在更新Users result = oapEntities.Users.Where(a =&gt...

Entity Framework 基础提供程序在 Open 上失败

使用entity framework自动生成的edmx,但是操作数据库老是报:基础提供程序在 Open 上失败在App.config中的连接字符串加上密...

Entity Framework 事务

代码如下: public int AddNoteAndNoteMarkDown(MyNoteFile myNoteFile, MyNoteMarkDown myNoteMarkDown) { ...

EF添加。Entity Framework添加。abp vnext ef 添加批量添加的封装

EF的添加如下,代码比较添加: ShipEntities se = new ShipEntities(); se.Users.Add(user); se.SaveChanges(); 方法2:...

EF CORE 6使用事务。Entity Framework

如果出现错误:The connection is already in a transaction and cannot participate in another transaction.可以进行一下...

Redis常用查询命令

hash相关查询hash的所有key:hkey + hash名称查询hash的所有某个key:hget + hash名称+ key名称List相关根据key查询list :l...

css弹性盒子flex布局

css弹性盒子由于版本不同浏览器问题造成了一些不同的写法display:flexbox;在google浏览器中如果使用下面的写法就不行displa...

可输入下拉文本框据输入动态加载数据 jquery-editable-select

用到一个jquery-editable-select的控件github地址:https://github.com/indrimuska/jquery-editable-select这个插件的原理是...

.net mvc分部页.net core分部页

.net分部页的三种方式第一种:@Html.Partial(&quot;_分部页&quot;)第二种:@{ Html.RenderPartial(&quot;分部页&quot;);}...

css中单位pxemrem和vh/vw的理解

&gt;px像素(Pixel)。相对长度单位。像素px是相对于显示器屏幕分辨率而言的。em是相对长度单位。相对于当前对象内文本的字...

让IIS支持webp格式图片让IIS支持vtt格式iis设置mime类型iis配置支持的类型

webp格式图片可以让图片体积变小。也让下载图片变得更加困难一点 在线制作webp工具 https://www.upyun.com/webp?utm_mediu...

网页上传文件断点续传的实现无视文件大小上传以及datatables基本用法

首先明白js是客户带执行代码,c#是服务器上执行代码。本地文件需要用到js处理,服务器端接受c#代码处理1.HTML页面,文件信...

如何使用图标像使用文字一样使用文本图标的方法

1.首先在Iconfont-阿里巴巴矢量图标库上面找到你需要的图标然后加入你的购物车然后选择图标;注意:每个类型的图标会大小不...

使用七牛云的cdn服务提高图片的加载速度

CDN介绍CDN的全称是Content Delivery Network,即内容分发网络。CDN加速主要是加速静态资源,如网站上面上传的图片、媒体,...