ApplicationDbContext.cs 396 B

12345678910111213141516
  1. using Microsoft.AspNetCore.Identity.EntityFrameworkCore;
  2. using Microsoft.EntityFrameworkCore;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Text;
  6. namespace HyperCube.Data
  7. {
  8. public class ApplicationDbContext : IdentityDbContext
  9. {
  10. public ApplicationDbContext(DbContextOptions<ApplicationDbContext> options)
  11. : base(options)
  12. {
  13. }
  14. }
  15. }