NET-Web-API-w-Angular/Models/Context.cs

13 lines
252 B
C#
Raw Normal View History

2024-06-03 19:44:25 +00:00
using Microsoft.EntityFrameworkCore;
namespace Api.Models;
public class Context : DbContext
{
public Context(DbContextOptions<Context> options)
: base(options)
{
}
public DbSet<Item> Items { get; set; } = null!;
}