| File: Program.cs | Web Access |
| Project: src\playground\DatabaseMigration\DatabaseMigration.ApiService\DatabaseMigration.ApiService.csproj (DatabaseMigration.ApiService) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using Microsoft.EntityFrameworkCore; var builder = WebApplication.CreateBuilder(args); builder.AddServiceDefaults(); if (args.Contains("--postgres")) { builder.Services.AddDbContextPool<MyDb1Context>(options => { var connectionString = builder.Configuration.GetConnectionString("db1"); options.UseNpgsql(connectionString, options => { options.MigrationsAssembly("DatabaseMigration.ApiModel"); }); }); } else { builder.AddSqlServerDbContext<MyDb1Context>("db1", configureDbContextOptions: options => { options.UseSqlServer(sqlServerOptions => { sqlServerOptions.MigrationsAssembly("DatabaseMigration.ApiModel"); }); }); } var app = builder.Build(); app.MapGet("/", async (MyDb1Context context) => { var entry = new Entry(); await context.Entries.AddAsync(entry); await context.SaveChangesAsync(); var entries = await context.Entries.ToListAsync(); return new { totalEntries = entries.Count, entries = entries }; }); app.Run();