Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using Microsoft.EntityFrameworkCore;
- using Backend.Models;
- namespace Backend.Data
- {
- public class ApplicationDbContext : DbContext
- {
- public ApplicationDbContext(DbContextOptions<ApplicationDbContext> options)
- : base(options)
- {
- }
- public DbSet<User> Users { get; set; }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement