source: PostgreSqlDotnetCore/Data/ApplicationDbContext.cs@ 72b1da2

main
Last change on this file since 72b1da2 was 2639fab, checked in by ElenaMoskova <elena.moskova99@…>, 6 weeks ago

Update with triggers

  • Property mode set to 100644
File size: 4.7 KB
RevLine 
[2aea0fd]1using Microsoft.AspNetCore.Identity.EntityFrameworkCore;
2using Microsoft.EntityFrameworkCore;
3using PostgreSqlDotnetCore.Models;
4using System.Xml;
5
6namespace PostgreSqlDotnetCore.Data
7{
8 public class ApplicationDbContext : IdentityDbContext
9 {
10 public ApplicationDbContext() {}
11 public ApplicationDbContext(DbContextOptions<ApplicationDbContext> options)
12 : base(options)
13 {
14 }
15
16 protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
17 {
18 if (!optionsBuilder.IsConfigured)
19 {
20 IConfigurationRoot configuration = new ConfigurationBuilder()
21 .SetBasePath(Directory.GetCurrentDirectory())
22 .AddJsonFile("appsettings.json")
23 .Build();
24 var connectionString = configuration.GetConnectionString("DefaultConnection");
25 optionsBuilder.UseNpgsql(connectionString);
26 }
27 }
28
29 protected override void OnModelCreating(ModelBuilder modelBuilder)
30 {
31 modelBuilder.HasDefaultSchema("project");
32 modelBuilder.Entity<UsersClass>().ToTable("users", t => t.ExcludeFromMigrations());
33 modelBuilder.Entity<VetCenter>().ToTable("vet_centers", t => t.ExcludeFromMigrations());
34 modelBuilder.Entity<BlogPostConsultation>().Metadata.SetIsTableExcludedFromMigrations(true);
35 modelBuilder.Entity<RolesClass>().Metadata.SetIsTableExcludedFromMigrations(true);
36 modelBuilder.Entity<CitiesClass>().Metadata.SetIsTableExcludedFromMigrations(true);
37 modelBuilder.Entity<ProductsClass>().Metadata.SetIsTableExcludedFromMigrations(true);
38 modelBuilder.Entity<DiagnosticsClass>().Metadata.SetIsTableExcludedFromMigrations(true);
39 modelBuilder.Entity<OrdersClass>().Metadata.SetIsTableExcludedFromMigrations(true);
40 modelBuilder.Entity<Pet_StatusClass>().Metadata.SetIsTableExcludedFromMigrations(true);
41 modelBuilder.Entity<BreedsClass>().Metadata.SetIsTableExcludedFromMigrations(true);
42 modelBuilder.Entity<JobsClass>().Metadata.SetIsTableExcludedFromMigrations(true);
43 modelBuilder.Entity<ManufacturersClass>().Metadata.SetIsTableExcludedFromMigrations(true);
44 modelBuilder.Entity<Pet_CaresClass>().Metadata.SetIsTableExcludedFromMigrations(true);
45 modelBuilder.Entity<PetsClass>().Metadata.SetIsTableExcludedFromMigrations(true);
46 modelBuilder.Entity<ReportsClass>().Metadata.SetIsTableExcludedFromMigrations(true);
47 modelBuilder.Entity<TherapyClass>().Metadata.SetIsTableExcludedFromMigrations(true);
48 modelBuilder.Entity<Type_Of_PetsClass>().Metadata.SetIsTableExcludedFromMigrations(true);
49 modelBuilder.Entity<MedecinesClass>().Metadata.SetIsTableExcludedFromMigrations(true);
50 modelBuilder.Entity<Pet_GaleryClass>().Metadata.SetIsTableExcludedFromMigrations(true);
51 modelBuilder.Entity<BlogPostAnswers>().Metadata.SetIsTableExcludedFromMigrations(true);
52 //modelBuilder.Entity<PetCareAllData>().Metadata.SetIsTableExcludedFromMigrations(true);
[2639fab]53
54
55
[2aea0fd]56 base.OnModelCreating(modelBuilder);
57
[2639fab]58 // Configure the relationship between VetCenter and CitiesClass
59
60
61
[2aea0fd]62 // ... model definition ...
63 }
64
65 public virtual DbSet<UsersClass> CustomerObj { get; set; }
66 public virtual DbSet<VetCenter> VetCentersObj { get; set; }
67 public virtual DbSet<BlogPostConsultation> BlogPostControllerObj { get; set; }
68 public virtual DbSet<RolesClass> RoleControllerObj { get; set; }
69 public virtual DbSet<CitiesClass> CitiesObj { get; set; }
70 public virtual DbSet<ProductsClass> ProductObj { get; set; }
71 public virtual DbSet<DiagnosticsClass> DiagObj { get; set; }
72 public virtual DbSet<BlogPostAnswers> BlogPostAnswersObj { get; set; }
73 public virtual DbSet<OrdersClass> OrderObj { get; set; }
74 public virtual DbSet<Pet_StatusClass> PetStatusObj { get; set; }
75 public virtual DbSet<BreedsClass> BreedsObj { get; set; }
76 public virtual DbSet<JobsClass> JobsObj { get; set; }
77 public virtual DbSet<ManufacturersClass> ManObj { get; set; }
78 public virtual DbSet<MedecinesClass> MedeObj { get; set; }
79 public virtual DbSet<Pet_CaresClass> PetCaresObj { get; set; }
80 //public virtual DbSet<PetCareAllData> PetCaresWithAllDataObj { get; set; }
81 public virtual DbSet<PetsClass> PetsObj { get; set; }
82 public virtual DbSet<ReportsClass> repObj { get; set; }
83 public virtual DbSet<TherapyClass> theraObj { get; set; }
84 public virtual DbSet<Type_Of_PetsClass> typeofObj { get; set; }
85 }
86}
Note: See TracBrowser for help on using the repository browser.