using System; using System.Collections.Generic; using Microsoft.EntityFrameworkCore; namespace administration.Models; public partial class LayoutDataContext : DbContext { public LayoutDataContext() { } public LayoutDataContext(DbContextOptions options) : base(options) { } 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 https://go.microsoft.com/fwlink/?LinkId=723263. => optionsBuilder.UseSqlServer("Server=217.154.116.43,1433;Database=LayoutData;User Id=sa;Password=Mf33ksTRLrPKSqQ4cTXitgiSN6BPBt89;TrustServerCertificate=True;"); protected override void OnModelCreating(ModelBuilder modelBuilder) { modelBuilder.Entity(entity => { entity.HasKey(e => e.Id).HasName("PK__Users__3214EC0774A20142"); entity.HasIndex(e => e.Username, "UX_Users_Username").IsUnique(); entity.Property(e => e.CreatedAt).HasDefaultValueSql("(sysdatetimeoffset())"); entity.Property(e => e.PasswordHash).HasMaxLength(512); entity.Property(e => e.ResetToken).HasMaxLength(256); entity.Property(e => e.Username).HasMaxLength(100); }); OnModelCreatingPartial(modelBuilder); } partial void OnModelCreatingPartial(ModelBuilder modelBuilder); }