16 lines
337 B
C#
16 lines
337 B
C#
using Microsoft.EntityFrameworkCore;
|
|
using FoodApp.Models;
|
|
|
|
namespace FoodApp.Data
|
|
{
|
|
public class ApplicationDbContext : DbContext
|
|
{
|
|
public ApplicationDbContext(DbContextOptions<ApplicationDbContext> options)
|
|
: base(options)
|
|
{
|
|
}
|
|
|
|
public DbSet<FoodItem> FoodItems { get; set; }
|
|
}
|
|
}
|