14 lines
366 B
C#
14 lines
366 B
C#
namespace CSR.Infrastructure.Persistence.Configurations;
|
|
|
|
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.EntityFrameworkCore.Metadata.Builders;
|
|
|
|
|
|
public class UserConfiguration : IEntityTypeConfiguration<User>
|
|
{
|
|
public void Configure(EntityTypeBuilder<User> builder)
|
|
{
|
|
builder.Property(u => u.PasswordHash)
|
|
.HasColumnName("Password");
|
|
}
|
|
}
|