Updated `AddRecInfrastructure` to improve DbContext setup: - Renamed parameters for clarity (`dbContextOpt` to `opt`). - Renamed `connectionString` to `cnnStr` for consistency. - Added `LogTo` for SQL query logging at `Trace` level. - Enabled `EnableSensitiveDataLogging` for debugging. - Enabled `EnableDetailedErrors` for detailed error messages.
57 lines
1.5 KiB
C#
57 lines
1.5 KiB
C#
using Microsoft.EntityFrameworkCore;
|
|
using ReC.API.Middleware;
|
|
using ReC.Application;
|
|
using ReC.Infrastructure;
|
|
|
|
var builder = WebApplication.CreateBuilder(args);
|
|
|
|
var config = builder.Configuration;
|
|
|
|
// Add services to the container.
|
|
builder.Services.AddRecServices(options =>
|
|
{
|
|
options.LuckyPennySoftwareLicenseKey = builder.Configuration["LuckyPennySoftwareLicenseKey"];
|
|
options.ConfigureRecActions(config.GetSection("RecAction"));
|
|
});
|
|
|
|
builder.Services.AddRecInfrastructure(options =>
|
|
{
|
|
options.ConfigureDbContext((provider, opt) =>
|
|
{
|
|
var cnnStr = builder.Configuration.GetConnectionString("Default")
|
|
?? throw new InvalidOperationException("Connection string is not found.");
|
|
|
|
var logger = provider.GetRequiredService<ILogger<RecDbContext>>();
|
|
opt.UseSqlServer(cnnStr)
|
|
.LogTo(log => logger.LogInformation("{log}", log), LogLevel.Trace)
|
|
.EnableSensitiveDataLogging()
|
|
.EnableDetailedErrors();
|
|
});
|
|
});
|
|
|
|
builder.Services.AddControllers();
|
|
// Learn more about configuring Swagger/OpenAPI at https://aka.ms/aspnetcore/swashbuckle
|
|
builder.Services.AddEndpointsApiExplorer();
|
|
builder.Services.AddSwaggerGen();
|
|
|
|
var app = builder.Build();
|
|
|
|
#pragma warning disable CS0618
|
|
app.UseMiddleware<ExceptionHandlingMiddleware>();
|
|
#pragma warning restore CS0618
|
|
|
|
// Configure the HTTP request pipeline.
|
|
if (app.Environment.IsDevelopment())
|
|
{
|
|
app.UseSwagger();
|
|
app.UseSwaggerUI();
|
|
}
|
|
|
|
app.UseHttpsRedirection();
|
|
|
|
app.UseAuthorization();
|
|
|
|
app.MapControllers();
|
|
|
|
app.Run();
|