参见英文答案 >
vNext Dependency Injection Generic Interface1个
我打算将我的系统移动到通用服务层.
我打算将我的系统移动到通用服务层.
public interface IAbcService<TEntity> where TEntity : class public class AbcService<TEntity> : IAbcService<TEntity> where TEntity : class
我尝试了一些东西,但它不起作用.
services.AddTransient<typeof(IAbcService<MyEntity>),AbcService(); .... .... ....
如何在asp.net核心中注册通用服务?