这是基于vue-vben-admin 模板适用于abp Vnext的前端管理项目
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
cKey e0c5c358b5 Remove redundant references 5 years ago
..
LINGYUN/Abp/Dapr/Actors Remove redundant references 5 years ago
Microsoft/Extensions/DependencyInjection Improved DaprActors to accommodate multiple RemoteServices 5 years ago
LINGYUN.Abp.Dapr.Actors.csproj Remove redundant references 5 years ago
README.md update README.MD 5 years ago

README.md

LINGYUN.Abp.Dapr.Actors

Dapr.IActor客户端代理

配置使用

模块按需引用

[DependsOn(typeof(AbpDaprActorsModule))]
public class YouProjectModule : AbpModule
{
	public override void ConfigureServices(ServiceConfigurationContext context)
    {
        // 注册代理类似于 Volo.Abp.Http.Client 模块
        context.Services.AddDaprActorProxies(
            typeof(YouProjectActorInterfaceModule).Assembly, // 搜索 YouProjectActorInterfaceModule 模块下的IActor定义
            RemoteServiceName
        );
    }
}

配置项说明

其他