上一页 1 ··· 174 175 176 177 178 179 180 181 182 ··· 401 下一页
摘要: https://github.com/jbogard/MediatR/wiki#basics MediatR是一种进程内消息传递机制。 支持以同步或异步的形式进行请求/响应,命令,查询,通知和事件的消息传递,并通过C#泛型支持消息的智能调度。 Basics MediatR has two kinds 阅读全文
posted @ 2020-06-11 13:48 ChuckLu 阅读(331) 评论(0) 推荐(0)
摘要: MediatR MediatR is a low-ambition library trying to solve a simple problem — decoupling the in-process sending of messages from handling messages. Cro 阅读全文
posted @ 2020-06-11 11:18 ChuckLu 阅读(401) 评论(0) 推荐(0)
摘要: What's an Aggregate Root? 回答1 In the context of the repository pattern, aggregate roots are the only objects your client code loads from the repositor 阅读全文
posted @ 2020-06-11 10:20 ChuckLu 阅读(550) 评论(0) 推荐(0)
摘要: 中介者模式 中介者模式(Mediator Pattern)是用来降低多个对象和类之间的通信复杂性。这种模式提供了一个中介类,该类通常处理不同类之间的通信,并支持松耦合,使代码易于维护。中介者模式属于行为型模式。 介绍 意图:用一个中介对象来封装一系列的对象交互,中介者使各对象不需要显式地相互引用,从 阅读全文
posted @ 2020-06-10 18:34 ChuckLu 阅读(195) 评论(0) 推荐(0)
摘要: Domain events: design and implementation Use domain events to explicitly implement side effects of changes within your domain. In other words, and usi 阅读全文
posted @ 2020-06-10 16:17 ChuckLu 阅读(424) 评论(0) 推荐(0)
摘要: https://rules.sonarsource.com/csharp/RSPEC-3925 The ISerializable interface is the mechanism to control the type serialization process. If not impleme 阅读全文
posted @ 2020-06-10 10:37 ChuckLu 阅读(662) 评论(0) 推荐(0)
摘要: Package version is always 1.0.0 with dotnet pack https://github.com/kerryjiang/SuperSocket/blob/master/Directory.Build.props When you use dotnet pack, 阅读全文
posted @ 2020-06-09 18:04 ChuckLu 阅读(341) 评论(0) 推荐(0)
摘要: CA1005: Avoid excessive parameters on generic types https://docs.microsoft.com/en-us/visualstudio/code-quality/install-roslyn-analyzers?view=vs-2019 需 阅读全文
posted @ 2020-06-09 15:00 ChuckLu 阅读(265) 评论(0) 推荐(0)
摘要: Event Sourcing pattern 阅读全文
posted @ 2020-06-05 16:46 ChuckLu 阅读(153) 评论(0) 推荐(0)
摘要: Command and Query Responsibility Segregation (CQRS) pattern The Command and Query Responsibility Segregation (CQRS) pattern separates read and update 阅读全文
posted @ 2020-06-05 16:44 ChuckLu 阅读(364) 评论(0) 推荐(0)
上一页 1 ··· 174 175 176 177 178 179 180 181 182 ··· 401 下一页