C# 编写 SignalR 客户端时需要手动注入客户端方法: connection.On<string, string>("ReceiveMessage", (user, message) => { t[......]继续阅读

2023年9月25日 1条评论 2104点热度 3人点赞 痴者工良 阅读全文

C# Writing a SignalR Client Requires Manual Injection of Client Methods: connection.On<string, string>("ReceiveMessage", ([......]继续阅读

2023年9月25日 1条评论 2108点热度 3人点赞 痴者工良 阅读全文

代码示例如下: System.Net.ServicePointManager.ServerCertificateValidationCallback += (sender, certificate, chain, sslPolicyErrors) => true;[......]继续阅读

2022年11月22日 0条评论 2445点热度 0人点赞 痴者工良 阅读全文

The code example is as follows: System.Net.ServicePointManager.ServerCertificateValidationCallback += (sender, certificate, chain, sslPoli[......]继续阅读

2022年11月22日 0条评论 8点热度 0人点赞 痴者工良 阅读全文

1, IServiceCollection 可以被替换服务。 ServiceDescriptor 可以通过 .Scoped() 等生成要注入的自定义服务。 public static IServiceCollection AddAbpDynamicOptions<TOptions, T[......]继续阅读

2022年6月24日 0条评论 2372点热度 1人点赞 痴者工良 阅读全文

IServiceCollection can replace services. ServiceDescriptor can generate custom services to be injected using methods like .Scoped(). public sta[......]继续阅读

2022年6月24日 0条评论 2372点热度 1人点赞 痴者工良 阅读全文

Autofac 的使用 1,简单的实践 2,注册组件 3,Lambda 注册组件 4,注册泛型 5,属性注入 6,解析服务 7,生命周期 8,实例作用域 9,Autofac 其它需要学习的知识 ASP.NET Core 1,默认依赖注入 2,使用 Autofac ABP Autofac[......] 继续阅读

2020年6月9日 0条评论 3562点热度 0人点赞 痴者工良 阅读全文

Using Autofac 1. Simple Practice 2. Registering Components 3. Lambda Registration of Components 4. Registering Generics 5. Property Injection 6. Res[......] 继续阅读

2020年6月9日 0条评论 8点热度 0人点赞 痴者工良 阅读全文

Create a static class to inject Dapper services. /// <summary> /// Inject Dapper /// </summary> public static class Dapper[......]继续阅读

2020年4月3日 0条评论 2点热度 6人点赞 痴者工良 阅读全文

新建一个静态类吗,注入 dapper 服务。 /// <summary> /// 注入dapper /// </summary> public static class DapperService { /// <s[......]继续阅读

2020年4月3日 0条评论 5043点热度 6人点赞 痴者工良 阅读全文

For context classes, there should be an overloaded base(options) constructor. public partial class DatabaseContext : DbContext { publi[......]继续阅读

2019年11月18日 0条评论 8点热度 2人点赞 痴者工良 阅读全文

对于上下文类,要有一个 base(options) 构造函数重载。 public partial class DatabaseContext : DbContext { public DatabaseContext() { }[......]继续阅读

2019年11月18日 0条评论 4119点热度 2人点赞 痴者工良 阅读全文