using System; using System.Collections.Generic; using Microsoft.EntityFrameworkCore; namespace FirstSlice.Models; public partial class FirstSliceContext : DbContext { public FirstSliceContext() { } public FirstSliceContext(DbContextOptions options) : base(options) { } public virtual DbSet Roles { get; set; } public virtual DbSet Users { get; set; } protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder) #warning To protect potentially sensitive information in your connection string, you should move it out of source code. You can avoid scaffolding the connection string by using the Name= syntax to read it from configuration - see https://go.microsoft.com/fwlink/?linkid=2131148. For more guidance on storing connection strings, see http://go.microsoft.com/fwlink/?LinkId=723263. => optionsBuilder.UseNpgsql("Host=localhost;Port=5432;Database=first_slice;Username=postgres;Password=futynvfrcbv2002"); protected override void OnModelCreating(ModelBuilder modelBuilder) { modelBuilder.Entity(entity => { entity.HasKey(e => e.Id).HasName("roles_pkey"); entity.ToTable("roles"); entity.Property(e => e.Id).HasColumnName("id"); entity.Property(e => e.Name) .HasMaxLength(255) .HasColumnName("name"); }); modelBuilder.Entity(entity => { entity.HasKey(e => e.Id).HasName("users_pkey"); entity.ToTable("users"); entity.Property(e => e.Id).HasColumnName("id"); entity.Property(e => e.Address) .HasMaxLength(255) .HasColumnName("address"); entity.Property(e => e.Birthday) .HasMaxLength(255) .HasColumnName("birthday"); entity.Property(e => e.FkRoleId).HasColumnName("fk_role_id"); entity.Property(e => e.Fullname) .HasMaxLength(255) .HasColumnName("fullname"); entity.Property(e => e.Phonenumber) .HasMaxLength(11) .HasColumnName("phonenumber"); entity.HasOne(d => d.FkRole).WithMany(p => p.Users) .HasForeignKey(d => d.FkRoleId) .HasConstraintName("users_fk_role_id_fkey"); }); OnModelCreatingPartial(modelBuilder); } partial void OnModelCreatingPartial(ModelBuilder modelBuilder); }