.net core ef 连表查询

Information和TypeInfo连表查询

类似:

select st.Title1,si.* from [Star_Information] si left join Star_TypeInfo st on si.typeId2=st.id

先在EfCoreDbContext.cs配置

  protected override void OnModelCreating(ModelBuilder builder){base.OnModelCreating(builder);//TypeInfo 连表查询配置builder.Entity<Information>().HasOne(si => si.TypeInfo).WithMany().HasForeignKey(si => si.TypeId2);// 跟TypeInfo表相关联的TypeId2}

在Information.cs实体类新增 public TypeInfo TypeInfo { get; set; } // 导航属性 

 

接口实现

  /// <summary>/// 获取信息列表/// </summary>/// <param name="channel">调用参数</param>/// <param name="pageSize">每页记录数。必须大于等于1</param>/// <param name="pageIndex">页码。首页从1开始,页码必须大于等于1</param>/// <param name="typeIds">分类Id集</param>/// <param name="typeInfoIds">多选分类Id集</param>/// <param name="auditIds">审核Id集</param>/// <param name="keywords">搜索关键词</param>/// <returns></returns>[HttpGet][Authorize("Manage_View")]public async Task<MessageDto> List(string channel, int pageSize, int pageIndex, string typeIds = "", string typeInfoIds = "", string auditIds = "", string keywords = ""){var parameter = (InformationParameter)await _adminMenuService.GetParameter(channel, new InformationParameter());if (parameter.Channel == ""){return new MessageDto { Message = "信息不存在" };}var where = PredicateBuilder.True<Information>();where = where.And(w => w.Channel == parameter.Channel && w.WebSiteId == _authorityModel.WebSite.Id);if (!string.IsNullOrEmpty(typeIds)){var lastPathId = typeIds.Split(',').LastOrDefault();where = where.And(w => w.TypeIdPath.Contains(lastPathId));}if (!string.IsNullOrEmpty(typeInfoIds)){var lastPathId = typeInfoIds.Split(',').LastOrDefault();where = where.And(w => w.TypeIdStrPath.Contains(lastPathId));}if (!string.IsNullOrEmpty(auditIds) && StringHelper.IsNumber(auditIds.Split(',').LastOrDefault())){var lastPathId = long.Parse(auditIds.Split(',').LastOrDefault());where = where.And(w => w.AuditStatus == lastPathId);}if (!string.IsNullOrEmpty(keywords)){//连表查询TypeInfo的标题where = where.And(w => w.TypeInfo.Title1.Contains(keywords));}//联表查询var infoList = await _informationService.GetListAsync(pageSize, pageIndex, where, order => order.OrderByDescending(o => o.IsTop).ThenBy(o => o.Sort.Length).ThenBy(o => o.Sort).ThenByDescending(o => o.ReleaseDate));//联表查询 这个可以直接查出已经关联的人才表//var infoList = await _informationService.GetListAsync(pageSize, pageIndex, where,//    order => order.OrderByDescending(o => o.IsTop).ThenBy(o => o.Sort.Length).ThenBy(o => o.Sort).ThenByDescending(o => o.ReleaseDate)//    , info => info.Include(i => i.TypeInfo));var totleCount = await _informationService.CountAsync(where);var listData = _mapper.Map<List<Information>, List<InformationDto>>(infoList);var typeInfoList = await _typeInfoService.GetListAsync(0, w => w.Channel == parameter.TypeChannel && w.WebSiteId == _authorityModel.WebSite.Id, order => order.OrderBy(o => o.Sort));foreach (var item in listData){//如果有关联简介的idif (item.TypeId2!=0){var typeInfo = await _typeInfoService.GetAsync(item.TypeId2);if (typeInfo!=null){                     item.Type2Name= typeInfo.Title1;item.Type2Img = typeInfo.PicURL1;}}if (!string.IsNullOrEmpty(item.TypeIdPath)){item.TypeIdPathName = new List<string>();var itemTypeList = typeInfoList.Where(w => item.TypeIdPath.Contains(w.Id.ToString()));foreach (var type in itemTypeList){item.TypeIdPathName.Add(type.Title1);if (item.Channel == "ScientificResearchPlatform"){string[] attrid = item.TypeIdPath.Split(',');if (type.DisplayMode == 0){if (item.TypeIdPath != ""){if (attrid.Length > 1){ item.Url = "http://103.236.254.221:20002/#/Platform/" + attrid[0] + "/" + attrid[1] + "/0/1";}}}else if (type.DisplayMode == 1){item.Url = "http://103.236.254.221:20002/#/NewsInfo/ScientificResearchPlatform/" + item.Id + "/" + attrid[0] + "";}else if (type.DisplayMode == 2){item.Url = "";}}}}}return new MessageDto { Success = true, Data = new { listData, totleCount } };}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.hqwc.cn/news/660834.html

如若内容造成侵权/违法违规/事实不符,请联系编程知识网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

anaconda的安装和Jupyter Notebook修改默认路径

anaconda的安装 就一个注意事项:在结尾时候记得配置系统环境变量 要是没有配置这个环境变量,后面就不能cmd启动Jupyter Notebook Jupyter Notebook修改默认路径 我们要找到Jupyter Notebook的配置文件 输入下面指令 jupyter notebook --generate-config就可以找到存放配置文…

一文解决ArcGIS生成点和管段 含案例讲解

背景 在工作中&#xff0c;我们经常遇到要将坐标数据导入 GIS&#xff0c;生成点位&#xff0c;若是地理坐标系&#xff08;经纬度&#xff09;&#xff0c;那么直接用 arcgis或者QGIS 导入数据就行了&#xff0c;可实际中总会遇到各种问题&#xff1a; 坐标数据集为大地 200…

如何在iPhone上恢复出厂设置后恢复数据

你不想让这种情况发生&#xff0c;但它确实发生了。您必须将iPhone恢复出厂设置。当您的 iPhone 上出现软件问题且无法修复时&#xff0c;可能会发生这种情况。相反&#xff0c;在更新期间&#xff0c;或者您的iPhone遇到问题时&#xff0c;iPhone上的数据不再存在。 不过不用…

8 聚类算法

目录 0 背景 1 Kmeans 1.1 聚类数量k的确定 2 DBSCAN 2.1 三个点 2.2 算法流程 3 层次聚类 3.1 过程 4 基于分布的聚类:高斯混合模型 0 背景 聚类算法是一种无监督学习技术&#xff0c;用于将数据集中的数据点划分为不同的组或簇&#xff0c;使得同一组内的数据点彼此相…

jenkins转载文本

基于Docker容器DevOps应用方案 企业业务代码发布系统 一、企业业务代码发布方式 1.1 传统方式 以物理机或虚拟机为颗粒度部署部署环境比较复杂&#xff0c;需要有先进的自动化运维手段出现问题后重新部署成本大&#xff0c;一般采用集群方式部署部署后以静态方式展现 1.2 容…

设计模式之代理模式ProxyPattern(六)

一、代理模式介绍 1、什么是代理模式&#xff1f; 代理模式是一种结构型设计模式&#xff0c;它允许为其他对象提供一个替代品或占位符&#xff0c;以控制对这个对象的访问。 2、代理模式的角色构成 抽象主题&#xff08;Subject&#xff09;&#xff1a;定义了真实主题和代…

R语言的学习——day1

将数据框中某一列数据改成行名 代码 结果

用 PyTorch 构建液态神经网络(LNN)

用 PyTorch 构建液态神经网络&#xff08;LNN&#xff09; 文章目录 什么是液态神经网络为什么需要液态神经网络LNN 与 RNN 的区别用 PyTorch 实现 LNNStep 1. 导入必要的库Step 2. 定义网络架构Step 3. 实现 ODE 求解器Step 4. 定义训练逻辑 LNN 的缺陷总结 什么是液态神经网络…

Linux的vim下制作进度条

目录 前言&#xff1a; 回车和换行有区别吗&#xff1f; 回车和换行的区别展示&#xff08;这个我在Linux下演示&#xff09; 为什么会消失呢? 回车和换行的区别 为什么\r和\n产生的效果不同&#xff1f; 打印进度条&#xff1a; &#xff08;1&#xff09;打印字符串 …

【Mac】mac 安装 prometheus 报错 prometheus: prometheus: cannot execute binary file

1、官网下载 Download | Prometheus 这里下载的是prometheus-2.51.2.linux-amd64.tar.gz 2、现象 解压之后启动Prometheus 启动脚本&#xff1a; nohup ./prometheus --config.fileprometheus.yml > prometheus.out 2>&1 & prometheus.out日志文件&#xff…

量子城域网建设设备系列(一):光量子交换机

通过一段时间的讨论&#xff0c;我们已经对城域网的建设有了一定的基础概念&#xff0c;从本文开始&#xff0c;我们将逐步开始讨论量子城域网建设过程中的设备。本文我们讨论光量子交换机。 1.光量子交换机的基本概念 如下图为两个国产光量子交换机&#xff0c;这两款设备均用…

IDEA 中 git fetch 验证报错 The provided password or token is incorrect

参考链接&#xff1a; 【GitLab】-HTTP Basic: Access denied.remote:You must use a personal access token_http basic: access denied. the provided password o-CSDN博客 idea使用gitLab报错&#xff1a;remote: HTTP Basic: Access denied_idea remote: http basic: acc…