You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

75 lines
2.2 KiB

using AspNetCoreApi.DbContexts;
using AspNetCoreApi.Middlewares;
using AspNetCoreApi.Services;
using Microsoft.EntityFrameworkCore;
using Pomelo.EntityFrameworkCore.MySql;
namespace AspNetCoreApi
{
public class Program
{
public static void Main(string[] args)
{
var builder = WebApplication.CreateBuilder(args);
// Add EF context
var connString = "server=peacecloud.synology.me;port=23306;database=Study;uid=study;password=Study1234!";
var dbServerVersion = new MySqlServerVersion(new Version(10, 3, 32));
builder.Services.AddDbContext<AppDbContext>(
options => options
.UseMySql(connString, dbServerVersion));
// Dependancy injection
builder.Services.AddScoped<ProductService>();
// Add services to the container.
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();
// Configure the HTTP request pipeline.
if (app.Environment.IsDevelopment())
{
app.UseSwagger();
app.UseSwaggerUI();
}
// Add Middlewares
app.UseMiddleware<CustomMiddleware1>();
app.UseMiddleware<CustomMiddleware2>();
app.UseHttpsRedirection();
app.UseAuthorization();
//// Add Routing
//app.UseRouting();
//app.UseEndpoints(endpoints =>
//{
// endpoints.MapGet("/routingtest", async context =>
// {
// await context.Response.WriteAsync("Hello, World!");
// });
// endpoints.MapGet("/routingtest/hello/{name}", async context =>
// {
// var name = context.Request.RouteValues["name"];
// await context.Response.WriteAsync($"Hello, {name}!");
// });
//});
app.MapControllers();
app.Run();
}
}
}