上一页 1 2 3 4 5 6 ··· 18 下一页
摘要: 一 通过EF代码创建 protected override void OnModelCreating(ModelBuilder modelBuilder) { modelBuilder.Entity<DataSample>(entity => { entity.HasIndex(e => e.Sor 阅读全文
posted @ 2021-01-25 17:24 jasonlai2016 阅读(494) 评论(0) 推荐(0) 编辑
摘要: use DATABASExxx DECLARE @st DATETIME = GETDATE() SELECT * FROM tableXXX SELECT DATEDIFF(MS, @st, GETDATE()) AS 执行时间 阅读全文
posted @ 2021-01-25 09:05 jasonlai2016 阅读(255) 评论(0) 推荐(0) 编辑
摘要: 由于EFCore执行SQL和存储过程有局限性,只针对DataSet<T>,所以写一个扩展,能返回自定义对象集合 using Microsoft.Data.SqlClient; using Microsoft.EntityFrameworkCore; using Microsoft.EntityFra 阅读全文
posted @ 2021-01-23 16:27 jasonlai2016 阅读(186) 评论(0) 推荐(0) 编辑
摘要: TextDate 依赖于跟踪中捕获的事件类的文本值; ApplicationName 创建 SQL Server 连接的客户端应用程序的名称。此列由该应用程序传递的值填充,而不是由所显示的程序名填充的; NTusername Windows 用户名。 LoginName 用户的登录名(SQL Ser 阅读全文
posted @ 2021-01-21 16:32 jasonlai2016 阅读(170) 评论(0) 推荐(0) 编辑
摘要: //安装 Z.EntityFramework.Extensions.EFCoreusing Microsoft.EntityFrameworkCore; using System; using System.Collections.Generic; using System.Linq; using 阅读全文
posted @ 2021-01-21 15:49 jasonlai2016 阅读(734) 评论(0) 推荐(0) 编辑
摘要: 原因:项目的.core sdk是2.2.301,而本地环境中只有2.1.202和3.0.100这个两个,所以导致无法运行解决办法: cmd中执行dotnet --list-sdks,查看.core所有版本,如果没有所需版本就在官网 去下载所需要的版本安装即可 端口被占用 用 阅读全文
posted @ 2021-01-09 16:01 jasonlai2016 阅读(420) 评论(0) 推荐(0) 编辑
摘要: app.config: <configSections> <section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler, log4net"/></configSections> <log4net deb 阅读全文
posted @ 2020-12-10 16:58 jasonlai2016 阅读(370) 评论(0) 推荐(0) 编辑
摘要: 集合表 private PdfPTable GetListRows(List<OutShowReportDetailDto> list) { PdfPTable table = new PdfPTable(6); table.TotalWidth = pdfContentWidth; int ind 阅读全文
posted @ 2020-11-23 09:49 jasonlai2016 阅读(667) 评论(0) 推荐(0) 编辑
摘要: Win10防火墙虽然能够很好地保护我们的系统,但同时也会因限制了某些端口,而给我们的操作带了一些不便。对于既想使用某些端口,又不愿关闭防火墙的用户而言,在Win10系统中设置防火墙开放特定端口就非常必要了。下面,小编就向大家分享具体方法。 操作步骤: 1、WIN+X调出系统配置菜单,选择控制面板; 阅读全文
posted @ 2020-10-24 16:21 jasonlai2016 阅读(1231) 评论(0) 推荐(0) 编辑
摘要: 版本号写一样 阅读全文
posted @ 2020-09-29 09:05 jasonlai2016 阅读(121) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 18 下一页