cloudnet-compose/worker/dotnet/Worker/Entities/VoteContext.cs
2018-09-21 19:23:31 +01:00

20 lines
447 B
C#

using Microsoft.EntityFrameworkCore;
namespace Worker.Entities
{
public class VoteContext : DbContext
{
private static bool _EnsureCreated;
public VoteContext(DbContextOptions options) : base(options)
{
if (!_EnsureCreated)
{
Database.EnsureCreated();
_EnsureCreated = true;
}
}
public DbSet<Vote> Votes { get; set; }
}
}