using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace FactoryMode { public abs ...
1 using System; 2 using System.Collections.Generic; 3 using System.ComponentModel; 4 using System.Data; 5 using System.Drawing; 6 using System.Linq; 7 ...
分类:
编程语言 时间:
2020-05-04 21:03:41
阅读次数:
73
1 using System; 2 using System.Collections.Generic; 3 using System.ComponentModel; 4 using System.Data; 5 using System.Drawing; 6 using System.Linq; 7 ...
分类:
编程语言 时间:
2020-05-04 15:52:09
阅读次数:
75
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading; using System.Threading.Tasks; namespace ...
分类:
编程语言 时间:
2020-05-02 18:51:05
阅读次数:
118
公司的ORM用的是EF,比较重量级的一个工具了,写查询方法时是用的LINQ TO SQL的形式,前些时觉得关于分页查询有些不对劲,昨天特意深究了一下。 先看一个基础仓储类定义的一个查询列表的公共方法: 参数部分就不说了,如果有对泛型T和表达树不熟悉的萌新可以去看我前面写过的一片博文。这里主要看方法体 ...
分类:
其他好文 时间:
2020-05-01 18:17:16
阅读次数:
98
允许为空 migrationBuilder.AlterColumn<string>( name: "BirthData", table: "Demo_Author", type: "datetimeoffset(7)", nullable: true, oldNullable:false); 修改字 ...
分类:
其他好文 时间:
2020-05-01 01:14:55
阅读次数:
210
错误 3002: 映射从第 149 行开始的片段时有问题:表 t_Apply 的键(t_Appl .Id)具有潜在运行时冲突: 列(t_Apply .Id)映射到概念端 EntitySet t_Apply 的属性(t_Apply .Id),但是它们未形成 EntitySet 的键属性. 将该实体删除 ...
分类:
其他好文 时间:
2020-04-28 09:45:00
阅读次数:
117
1.EF中的默认的事务 默认情况下,当我们执行一个SaveChanges()方法时就会新建了一个事务,然后将context中的CUD操作都在这个事务中进行。Context中有多个SaveChanges()时,每一个SaveChanges()都会执行一个单独的事务。一个栗子: using (var c ...
分类:
数据库 时间:
2020-04-27 22:15:06
阅读次数:
81
linux crontab & 每隔10秒执行一次 在LINUX中你应该先输入crontab -e,然后就会有个vi编辑界面,即可添加定时任务。 输入crontab -l查看所有执行的定时任务 在LINUX中,周期执行的任务一般由cron这个守护进程来处理[ps -ef|grep cron]。cro ...
分类:
系统相关 时间:
2020-04-27 19:12:01
阅读次数:
71
ctrl+z #中断当前的安装显示 ps -ef | grep yum #查找当前yum相关的进程 kill -9 进程号(pid) #杀掉进程 ...
分类:
其他好文 时间:
2020-04-27 17:42:25
阅读次数:
98