Commit a6beba97 authored by Savorboard's avatar Savorboard

update samples using new api.

parent 7b5c3285
using DotNetCore.CAP.EntityFrameworkCore; using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting; using Microsoft.AspNetCore.Hosting;
using Microsoft.Extensions.Configuration; using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.DependencyInjection;
...@@ -26,18 +25,11 @@ namespace Sample.Kafka ...@@ -26,18 +25,11 @@ namespace Sample.Kafka
{ {
services.AddDbContext<AppDbContext>(); services.AddDbContext<AppDbContext>();
services.AddCap() services.AddCap(x=> {
.AddEntityFrameworkStores<AppDbContext>(x=> { x.UseEntityFramework<AppDbContext>();
//x.ConnectionString = "Server=192.168.2.206;Initial Catalog=Test;User Id=cmswuliu;Password=h7xY81agBn*Veiu3;MultipleActiveResultSets=True"; x.UseSqlServer("Server=DESKTOP-M9R8T31;Initial Catalog=Test;User Id=sa;Password=P@ssw0rd;MultipleActiveResultSets=True");
x.ConnectionString = "Server=DESKTOP-M9R8T31;Initial Catalog=Test;User Id=sa;Password=P@ssw0rd;MultipleActiveResultSets=True"; x.UseRabbitMQ("localhost");
}) });
.AddRabbitMQ(x =>
{
x.HostName = "localhost";
// x.UserName = "admin";
// x.Password = "123123";
});
//.AddKafka(x => x.Servers = "");
// Add framework services. // Add framework services.
services.AddMvc(); services.AddMvc();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment