| 123456789101112131415161718192021 |
- using Microsoft.AspNetCore.Identity.EntityFrameworkCore;
- using Microsoft.EntityFrameworkCore;
- using System;
- using System.Collections.Generic;
-
- using MVCTemplate.Data.Data;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace MVCTemplate.Data.DbContexts
- {
- public class AppDbContext : IdentityDbContext
- {
- public AppDbContext(DbContextOptions<AppDbContext> options) : base(options) { }
-
- public DbSet<Message> Messages { get; set; }
-
-
- }
- }
|