Skip to content

Instantly share code, notes, and snippets.

@SafaElmali
Created May 1, 2019 14:20
Show Gist options
  • Save SafaElmali/4fa426b5366cee1e10c6ba1796c19198 to your computer and use it in GitHub Desktop.
Save SafaElmali/4fa426b5366cee1e10c6ba1796c19198 to your computer and use it in GitHub Desktop.
Database Context
using Microsoft.EntityFrameworkCore;
namespace TodoProject.Models{
public class TodoContext : DbContext {
public TodoContext(DbContextOptions<TodoContext> options) : base(options)
{
}
public DbSet<TodoItem> TodoItems { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment