using BlueLaminate.EFCore.Entities; using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Metadata.Builders; namespace BlueLaminate.EFCore.Configurations; public class CollectionConfiguration : IEntityTypeConfiguration { public void Configure(EntityTypeBuilder entity) { // Slug is the natural key the sync upserts against. entity.HasIndex(e => e.Slug).IsUnique(); } }