some changes
This commit is contained in:
parent
4ec9720541
commit
b47bac67ca
37 changed files with 397 additions and 190 deletions
|
@ -0,0 +1,14 @@
|
|||
using Femto.Modules.Blog.Domain.Authors;
|
||||
using Femto.Modules.Blog.Domain.Posts;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using Microsoft.EntityFrameworkCore.Metadata.Builders;
|
||||
|
||||
namespace Femto.Modules.Blog.Application.Configurations;
|
||||
|
||||
internal class AuthorConfiguration : IEntityTypeConfiguration<Author>
|
||||
{
|
||||
public void Configure(EntityTypeBuilder<Author> table)
|
||||
{
|
||||
table.ToTable("author");
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue