一.数据库 1.一个DBContext操纵一个数据库 2.DbContext下的一个DbSet<Model类>关联一个表,但是也可以只写一个表,DbContext可以关联其他的表。 3.使用Dbcontext.Database.EnsureCreated();可以根据自动创建数据库,以及相关的表。指 ...
分类:
数据库 时间:
2019-11-20 18:06:29
阅读次数:
78
给定一个长度不超过 10?4?? 的、仅由英文字母构成的字符串。请将字符重新调整顺序,按 PATestPATest.... 这样的顺序输出,并忽略其它字符。当然,六种字符的个数不一定是一样多的,若某种字符已经输出完,则余下的字符仍按 PATest 的顺序打印,直到所有字符都被输出。 输入格式: 输入 ...
分类:
其他好文 时间:
2019-11-10 17:32:07
阅读次数:
87
在高并发时数据库发生会死锁,发生死锁后,数据库会自动释放 原文: When a transaction is chosen as a deadlock victim, SQL Server will rollback the victim's transaction which releases l ...
分类:
数据库 时间:
2019-11-04 20:10:50
阅读次数:
286
目录 定义 意义 做法 实践 uml图 代码部分 目录 定义 意义 做法 实践 uml图 代码部分 定义 意义 做法 实践 uml图 代码部分 uml图 代码部分 github仓库 定义 Liskov于1987年提出了一个关于继承的原则“Inheritance should ensure that ...
分类:
其他好文 时间:
2019-11-04 17:46:06
阅读次数:
87
[TOC] "github仓库" 定义 Liskov于1987年提出了一个关于继承的原则“Inheritance should ensure that any property proved about supertype objects also holds for subtype objects ...
分类:
其他好文 时间:
2019-11-04 15:26:45
阅读次数:
102
/* Object and type object interface */ /* Objects are structures allocated on the heap. Special rules apply to the use of objects to ensure they are p ...
分类:
其他好文 时间:
2019-10-22 10:55:56
阅读次数:
66
Multiple request sequences that represent a logically related session should be executed with the same HttpContext instance to ensure automatic propag ...
分类:
Web程序 时间:
2019-10-20 13:17:52
阅读次数:
299
给定一个 k+1 位的正整数 N,写成 a?k???a?1??a?0?? 的形式,其中对所有 i 有 0 且 a?k??>0。N 被称为一个回文数,当且仅当对所有 i 有 a?i??=a?k?i??。零也被定义为一个回文数。 非回文数也可以通过一系列操作变出回文数。首先将该数字逆转,再将逆转数与该数 ...
分类:
其他好文 时间:
2019-10-20 12:59:13
阅读次数:
77
5.1 json JS对象 JSON字符串 Python字典 注意 1.将python数据转化为json: json.dumps(obj) Indent实现缩进(一般是4), json.dumps(obj,indent = 4) ensure_ascii 是否用ascii解析 ensure_asci ...
分类:
数据库 时间:
2019-10-19 09:45:31
阅读次数:
126
实现方式: 1、webpack method require.ensure([''], callback, chunkName) ; 2、es6 motehod import() import().then() import(/* webpackChunkName: async-chunk-name ...
分类:
Web程序 时间:
2019-10-17 21:52:58
阅读次数:
125