using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Metadata.Builders; public class ClinicalUserConfiguration : IEntityTypeConfiguration { public void Configure(EntityTypeBuilder builder) { builder.ToTable("clinical_users"); builder.HasKey(u => u.Id); builder.Property(u => u.Id).HasColumnName("id").HasDefaultValueSql("gen_random_uuid()"); builder.Property(u => u.Username).HasColumnName("username").HasMaxLength(100).IsRequired(); builder.Property(u => u.PasswordHash).HasColumnName("password_hash").HasMaxLength(500).IsRequired(); builder.Property(u => u.DisplayName).HasColumnName("display_name").HasMaxLength(200).IsRequired(); builder.Property(u => u.Role).HasColumnName("role").HasMaxLength(20).IsRequired() .HasConversion(v => v.ToDbString(), v => ClinicalRoleExtensions.FromDbString(v)); builder.Property(u => u.IsActive).HasColumnName("is_active").HasDefaultValue(true); builder.Property(u => u.CreatedAt).HasColumnName("created_at").HasDefaultValueSql("NOW()"); builder.Property(u => u.LastLoginAt).HasColumnName("last_login_at"); builder.HasIndex(u => u.Username).IsUnique(); } }