在开发中,我们想在调试中查看EF Core执行的sql语句,可以使用SQL Studio Manager Tools工具,另一种方式是使用EF Core提供的日志。 在ASP.NET Core使用Entity Framework Core的日志的步骤: 1. 设置启动方式 在launchSettin ...
分类:
Web程序 时间:
2020-02-14 00:58:11
阅读次数:
98
Asp.Net Identity,Entity Framework 与 Sqlite ...
分类:
数据库 时间:
2020-02-13 19:03:58
阅读次数:
74
//控制器using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; using System.IO;//上传文件的数据流 namespace U ...
分类:
Web程序 时间:
2020-02-13 16:31:22
阅读次数:
95
一、在删除有其它表的外键引用的数据有一下几种方式 1、不执行任何操作(EF Core默认Restrict):如果数据被其其他表外键依赖,拒绝删除 2、级联(Cascade):删除外键表中相应的所有行 3、设置NULL(SetNull):将表的外键字段值设置为空值NULL 4、设置默认值:如果外键表的 ...
分类:
其他好文 时间:
2020-02-13 10:12:31
阅读次数:
159
简单的管道模拟 using System; using System.Collections; using System.Collections.Generic; using System.Threading.Tasks; using static ConsolePipeline.Program; ...
分类:
其他好文 时间:
2020-02-13 09:24:25
阅读次数:
56
作者:HeloWxl www.jianshu.com/p/e4192d7c6844 Easycode是idea的一个插件,可以直接对数据的表生成entity、controller、service、dao、mapper无需任何编码,简单而强大。 1、安装(EasyCode) 我这里的话是已经那装好了。 ...
分类:
其他好文 时间:
2020-02-13 00:01:40
阅读次数:
78
1.创建过滤类 using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; namespace P01MVCFilter.Filters { // ...
分类:
其他好文 时间:
2020-02-12 23:45:37
阅读次数:
80
1 using System; 2 using System.Data; 3 using System.Data.OleDb ; 4 using System.Linq; 5 using System.IO; 6 7 OleDbConnection conn=new OleDbConnection( ...
分类:
数据库 时间:
2020-02-12 22:32:41
阅读次数:
131
背景 最近在做一个新项目的时候引入了一个架构方面的需求,就是需要检查项目的编码规范、模块分类规范、类依赖规范等,刚好接触到,正好做个调研。 很多时候,我们会制定项目的规范,例如: 硬性规定项目包结构中service层不能引用controller层的类(这个例子有点极端)。 硬性规定定义在contro ...
分类:
其他好文 时间:
2020-02-12 10:49:21
阅读次数:
80
1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Reflection; 5 using System.Text; 6 7 //Net Reflector(收费)官方网址:h ...
分类:
其他好文 时间:
2020-02-12 10:48:29
阅读次数:
77