using Hutopy.Infrastructure.Identity; using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Metadata.Builders; namespace Hutopy.Infrastructure.Data.Configurations; public class ApplicationUserConfiguration : IEntityTypeConfiguration { public void Configure(EntityTypeBuilder builder) { // Relationship between ApplicationUser and SocialNetworks builder .OwnsOne(u => u.SocialNetworks) .ToTable($"{nameof(ApplicationUser)}_SocialNetworks"); } }