17 lines
364 B
C#
Executable File
17 lines
364 B
C#
Executable File
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace GamificationService.Database;
|
|
|
|
|
|
public class ApplicationContext : DbContext
|
|
{
|
|
public ApplicationContext(DbContextOptions<ApplicationContext> options) : base(options)
|
|
{
|
|
}
|
|
|
|
protected override void OnModelCreating(ModelBuilder modelBuilder)
|
|
{
|
|
base.OnModelCreating(modelBuilder);
|
|
}
|
|
}
|