Files
hpcore/examples/todo_contract/DbModel.cs
2020-01-15 11:21:00 +05:30

19 lines
484 B
C#

using Microsoft.EntityFrameworkCore;
namespace ToDoContract
{
public class DataContext : DbContext
{
public DbSet<ToDoEntry> ToDoEntries { get; set; }
protected override void OnConfiguring(DbContextOptionsBuilder options)
=> options.UseSqlite("Data Source=state/todo.db");
}
public class ToDoEntry
{
public int Id { get; set; }
public string Content { get; set; }
public string CreatedBy { get; set; }
}
}