https://blog.csdn.net/y353027520dx/article/details/88872643 [......] 继续阅读
https://blog.csdn.net/y353027520dx/article/details/88872643 [......] 继续阅读
https://blog.csdn.net/y353027520dx/article/details/88872643 [......] 继续阅读
Common Value Types Value type variables can be directly assigned a value. They are derived from the class System.ValueType. | Type | Description | Range | Default Value | | :------ | :-----------------------------------[......] 继续阅读
常用值类型(Value types) 值类型变量可以直接分配给一个值。它们是从类 System.ValueType 中派生的。 类型 描述 范围 默认值 bool 布尔值 True 或 False False byte 8 位无符号整数 0 到 255 0 char 16 位 Unicode 字符 U +0000 到 U +ffff '\0' decimal 128 位精确的十进制值,28-29 有效位数 (-7.9 x 1028 到 7.9 x 1028) / 100 到 28 0.0M double 64 位双…
public class MyClass { public async Task<int> GetIntAsync() { await Task.FromResult(GetInt()); return 1; } public int GetInt() { return 1; } } [......] 继续阅读
public class MyClass { public async Task<int> GetIntAsync() { await Task.FromResult(GetInt()); return 1; } public int GetInt() { return 1; } } [......] 继续阅读
CLR Basics Author: *Hunter Article Title: CLR Basics Address: https://www.cnblogs.com/zd1994/p/6308587.html Author: Rock Grass Article Title: CLR - Basics Address: https://www.cnblogs.com/yanshicao/p/3721280.html Author: Gamain Article Title: Understanding CLR…
CLR 基础 作者:*Hunter 文章标题:CLR 基础 地址 https://www.cnblogs.com/zd1994/p/6308587.html 作者:岩石草 文章标题:CLR - 基础 地址:https://www.cnblogs.com/yanshicao/p/3721280.html 作者:Gamain 文章标题:CLR基础之一---认识CLR [《CLR via C#》读书笔记] 地址:https://www.cnblogs.com/Gamain/p/3452891.html CLR的执行模型 …
Workflow Core's Json Notes The design project stores those step points in a separate project, generating a separate dll. The JSON is as follows: { "Id": "HelloWorld11", "Version": 1, "Steps": [ { "Id": "He…
Workflow Core 的Json笔记 1,设计项目是,由单独的项目存储那些步骤点,生成单独的dll json如下 { "Id": "HelloWorld11", "Version": 1, "Steps": [ { "Id": "Hello", "StepType": "Test6.Steps.HelloWorld, Test6", "Nex…
NuGet Packages The ILogger and ILoggerFactory interfaces are located in Microsoft.Extensions.Logging.Abstractions, with their default implementation found in Microsoft.Extensions.Logging. Log Category There are two ways to specify the category: one is using cl…
https://docs.microsoft.com/zh-cn/aspnet/core/fundamentals/logging/?view=aspnetcore-2.2#nuget-packages NuGet 包 ILogger 和 ILoggerFactory 接口位于 Microsoft.Extensions.Logging.Abstractions 中,其默认实现位于 Microsoft.Extensions.Logging 中。 日志类别 有两种指定方式,一种是类对象,一种是手动创建。 创建 ILog…
有两种配置方式,一种是 DbContext 构造函数和依赖注入同时使用。 public void ConfigureServices(IServiceCollection services) 另一种是在 OnConfiguring 内配置使用。 [......] 继续阅读
https://docs.microsoft.com/zh-cn/ef/core/miscellaneous/configuring-dbcontext 有两种配置方式,一种是 Dbcontext 构造函数和依赖注入同时使用。 public void ConfigureServices(IServiceCollection services) 一种是在OnConfiguring内配置使用 [......] 继续阅读
Document Address https://wiki.ubuntu.org.cn/PostgreSQL Linux Installation of PostgreSQL https://www.postgresql.org/download/ The configuration files for the PostgreSQL database are located in /var/lib/pgsql/{version_number}/data For example, /var/lib/pgsql/11/…
文档地址 https://wiki.ubuntu.org.cn/PostgreSQL Linux安装 Postgresql https://www.postgresql.org/download/ PostgreSQL数据库配置文件在 /var/lib/pgsql/{版本号}/data 例如/var/lib/pgsql/11/data pg_hba.conf:配置对数据库的访问权限, postgresql.conf:配置PostgreSQL数据库服务器的相应的参数。 [......] 继续阅读
Parallel ForEach Equivalent to the foreach loop in C# Parallel Tasks Concurrent and parallel execution, where several steps within it run simultaneously rather than in sequence. Saga Transactions Transactions that have rollback operations. Scheduled Background…
Parallel ForEach 相当于C# 的foreach 循环 Parallel Tasks 并发、平行运行,在其内的几个步骤,会同时运行,而不是按顺序运行。 Saga Transactions 事务,具有回滚操作 Scheduled Background Tasks 后台异步定时加载。将一个任务放到后台托管,设置定时执行时间。 Recurring Background Tasks 后台定时执行,定时执行一些任务,直到不符合某个条件为止。 [......] 继续阅读