NuGet 包
NetProOA.Framework.EventBus.MongoDB
MongoDB集成事件实现。
📡
MongoDB事件总线
MongoDB集成事件实现,基于CAP和MongoDB。
📦 版本信息
版本:1.2.4.8
📋 依赖包
- NetProOA.Framework.Mongo.Domain.Core (1.1.5.2)
- NetProOA.Framework.EventBus (1.1.7.4)
- DotNetCore.CAP.MongoDB (8.3.3)
🚀 使用方法
安装命令:
dotnet add package NetProOA.Framework.EventBus.MongoDB
在 Program.cs 中配置:
builder.Services.AddCustomIntegrationEventService(builder.Configuration,
capOptions =>
{
capOptions.UseRabbitMQ("localhost");
capOptions.UseMongoDB("mongodb://localhost:27017");
},
() => {},
typeof(Startup).Assembly);