We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent caa2ef2 commit 3ea1e40Copy full SHA for 3ea1e40
samples/TodoApi/Startup.cs
@@ -2,9 +2,7 @@
2
using Microsoft.Extensions.DependencyInjection;
3
using NetCoreKit.Infrastructure.AspNetCore.Miniservice;
4
using NetCoreKit.Infrastructure.Bus;
5
-using NetCoreKit.Infrastructure.Bus.Kafka;
6
using NetCoreKit.Infrastructure.Bus.Redis;
7
-using NetCoreKit.Infrastructure.EfCore;
8
using NetCoreKit.Infrastructure.EfCore.MySql;
9
using NetCoreKit.Samples.TodoAPI.Domain;
10
using NetCoreKit.Samples.TodoAPI.Infrastructure.Db;
@@ -16,7 +14,7 @@ public class Startup
16
14
{
17
15
public void ConfigureServices(IServiceCollection services)
18
19
- services.AddMiniService<TodoListDbContext>(
+ services.AddEfCoreMiniService<TodoListDbContext>(
20
svc =>
21
22
//svc.AddEfSqlLiteDb();
0 commit comments