| 1234567891011121314151617181920 |
- 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) { }
-
-
-
- }
- }
|