using Bimix.Domain.Entities; using Microsoft.EntityFrameworkCore; namespace Bimix.Infrastructure.Data; public class BimixDbContext(DbContextOptions options) : DbContext(options) { public DbSet Products { get; set; } protected override void OnModelCreating(ModelBuilder modelBuilder) { base.OnModelCreating(modelBuilder); modelBuilder.Entity().HasKey(p => p.Id); modelBuilder.Entity().Property(p => p.Name).IsRequired().HasMaxLength(200); } }