xf 6b59e9ad2b 实现 AES 解密并更新相关引用和常量 пре 1 месец
..
Attributes 5ac6909ea1 Merge from callcenter пре 2 година
Authentications 356d83ff05 пре 1 месец
Cache c2bf6edbbc пре 9 месеци
Constants 6b59e9ad2b 实现 AES 解密并更新相关引用和常量 пре 1 месец
Dependency 7694c84699 保存 пре 8 месеци
Entities 16b5de73ff пре 4 месеци
Events 5ac6909ea1 Merge from callcenter пре 2 година
Exceptions ae045ac628 пре 1 година
Extensions 49c4168f57 fixed: TryDeserialize пре 4 месеци
Filters abf4a6e400 保存 пре 6 месеци
Locks 4cd28423ba distibutedlock пре 2 година
Options 4f7bcc45ba пре 1 година
Password 8c5b1dd0f5 identity пре 2 година
Queues 41b7506ead queue пре 1 година
README.md 5ac6909ea1 Merge from callcenter пре 2 година
XF.Domain.csproj 5484913053 7.0 -> 8.0 пре 6 месеци

README.md

#### 代码编写规范

1. 参照微软推荐编码规范及约定

https://docs.microsoft.com/zh-cn/dotnet/csharp/fundamentals/coding-style/identifier-names https://docs.microsoft.com/zh-cn/dotnet/csharp/fundamentals/coding-style/coding-conventions https://docs.microsoft.com/zh-cn/dotnet/standard/design-guidelines/naming-guidelines

2. 该项目扩展规范
  • 枚举:命名以大写E为前缀,在文件列表中可以一目了然
  • 方法命名方式: 新增:Addxxx 删除:Removexxx 修改:Updatexxx 查询单条数据:Getxxx 查询多条数据:Queryxxx 查询所有数据:QueryAllxxx 异步方法以Async为后缀:GetxxxAsync
  • WebApi和Web项目的Action都尽量采用异步方法,但命名不加Async后缀(因为此处的调用方不以Action命名来调用,而是以路由规则来访问)
  • 字段以'_'加小写字母为前缀:_orderDomainService