Added basic configuration
This commit is contained in:
10
testing/HopFrame.Testing/DatabaseContext.cs
Normal file
10
testing/HopFrame.Testing/DatabaseContext.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
using HopFrame.Testing.Models;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace HopFrame.Testing;
|
||||
|
||||
public class DatabaseContext(DbContextOptions<DatabaseContext> options) : DbContext(options) {
|
||||
|
||||
public DbSet<User> Users { get; set; }
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user