oliverbooth.dev/OliverBooth/Data/Web/Configuration/BookConfiguration.cs

25 lines
882 B
C#
Raw Permalink Normal View History

2023-12-14 16:03:24 +00:00
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Metadata.Builders;
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
using OliverBooth.Common.Data.Web;
2023-12-14 16:03:24 +00:00
namespace OliverBooth.Data.Web.Configuration;
/// <summary>
/// Represents the configuration for the <see cref="Book" /> entity.
/// </summary>
internal sealed class BookConfiguration : IEntityTypeConfiguration<Book>
{
/// <inheritdoc />
public void Configure(EntityTypeBuilder<Book> builder)
{
builder.ToTable("Book");
builder.HasKey(entry => entry.Isbn);
builder.Property(entry => entry.Isbn).IsRequired();
builder.Property(entry => entry.Title).IsRequired();
builder.Property(entry => entry.Author).IsRequired();
builder.Property(entry => entry.State).HasConversion<EnumToStringConverter<BookState>>().IsRequired();
}
}