13 lines
276 B
C#
13 lines
276 B
C#
|
using Microsoft.EntityFrameworkCore;
|
||
|
|
||
|
namespace TodoApi.Models;
|
||
|
|
||
|
public class TodoContext : DbContext
|
||
|
{
|
||
|
public TodoContext(DbContextOptions<TodoContext> options)
|
||
|
: base(options)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
public DbSet<TodoItem> TodoItems { get; set; } = null!;
|
||
|
}
|