增加界面缓存文档说明

This commit is contained in:
wintel
2023-12-30 21:12:05 +08:00
parent 989f8cd2bc
commit b604f68aa6
4 changed files with 20 additions and 4 deletions

View File

@@ -49,7 +49,7 @@ b => b.UseRowNumberForPaging());
## 使用mysql时提示无法找到openauthdb.Org
在linux下面mysql是区分数据库大小写的但OpenAuth.Core使用EF映射数据库表是按照首字母大写来处理的。在mysql配置中里面加上
在linux下面mysql是区分数据库大小写的但OpenAuth.Net使用EF映射数据库表是按照首字母大写来处理的。在mysql配置中里面加上
```shell
lower_case_table_names=1

View File

@@ -92,7 +92,7 @@ namespace OpenAuth.App
```
如果在一个事务里面有多次`SaveChanges()`的情况需要使用OpenAuth.Core提供的`ExecuteWithTransaction`处理。如下:
如果在一个事务里面有多次`SaveChanges()`的情况需要使用OpenAuth.Net提供的`ExecuteWithTransaction`处理。如下:
```csharp
//代码详见TestTransaction.cs/NormalSubmit()