source: src/FinkiChattery/FinkiChattery.Identity/Data/ApplicationDbContext.cs@ e6a6d9a

dev
Last change on this file since e6a6d9a was e6a6d9a, checked in by Стојков Марко <mst@…>, 3 years ago

Initialized FinkiChattery project

  • Property mode set to 100644
File size: 587 bytes
RevLine 
[e6a6d9a]1using Microsoft.AspNetCore.Identity.EntityFrameworkCore;
2using Microsoft.EntityFrameworkCore;
3using FinkiChattery.Identity.Models;
4
5namespace FinkiChattery.Identity.Data
6{
7 public class ApplicationDbContext<TUser> : IdentityDbContext<TUser, ApplicationRole, long> where TUser : ApplicationUser
8 {
9 public ApplicationDbContext(DbContextOptions<ApplicationDbContext<TUser>> options)
10 : base(options)
11 {
12 }
13
14 protected override void OnModelCreating(ModelBuilder builder)
15 {
16 base.OnModelCreating(builder);
17 }
18 }
19}
Note: See TracBrowser for help on using the repository browser.