Files
OnlineShop/AspireVersionUpgrade/Aspire8App/AspireApp.ApiService/WeatherDbContext.cs
T
2026-02-07 09:59:47 +00:00

14 lines
321 B
C#

using AspireApp.ApiService.Models;
using Microsoft.EntityFrameworkCore;
namespace AspireApp.ApiService;
public class WeatherDbContext : DbContext
{
public WeatherDbContext(DbContextOptions<WeatherDbContext> options) : base(options)
{
}
public DbSet<WeatherForecast> WeatherForecasts { get; set; }
}