-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProgram.cs
25 lines (23 loc) · 885 Bytes
/
Program.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
using System;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Hosting;
using AutoMapper.EntityFramework.Example;
using Microsoft.EntityFrameworkCore;
namespace EntityFramework.AutoMapper.WorkerService
{
public class Program
{
public static void Main(string[] args)
{
CreateHostBuilder(args).Build().Run();
}
public static IHostBuilder CreateHostBuilder(string[] args) =>
Host.CreateDefaultBuilder(args)
.ConfigureServices((hostContext, services) =>
{
services.AddAutoMapper(typeof(MapperProfile));
services.AddDbContext<ApplicationContext>(builder => builder.UseInMemoryDatabase(Guid.NewGuid().ToString()), ServiceLifetime.Singleton);
services.AddHostedService<Worker>();
});
}
}