摘要:
Database数据库的分库分表,表映射,切换表,使用到了IModelCacheKeyFactory 代码如下: using Microsoft.EntityFrameworkCore; using System; using System.Collections; using System.Col 阅读全文
摘要:
并发字典ConcurrentDictionary+迭代器--异步 代码如下: using Microsoft.EntityFrameworkCore; using System; using System.Collections; using System.Collections.Concurren 阅读全文
摘要:
Task任务取消主要使用的是 CancellationTokenSource 对象下的CancellationToken 取消标记, 代码如下 using Microsoft.EntityFrameworkCore; using System; using System.Collections; u 阅读全文
摘要:
线程取消主要使用的是 CancellationTokenSource 对象下的CancellationToken 取消标记, 代码如下 using Microsoft.EntityFrameworkCore; using System; using System.Collections; using 阅读全文
摘要:
EF Core + Oracle自动生成数据库 1、登录orcale 11g 授权 SQL> connect / as sysdba; SQL> create user myuser identified by 123456; SQL> grant connect, resource to myus 阅读全文
摘要:
设计模式之单例模式的多种使用方式以及单例的优化 具体使用案例如下: using System; using System.Collections.Concurrent; using System.Collections.Generic; using System.Linq; using System 阅读全文