13 lines
299 B
C#
13 lines
299 B
C#
|
|
using Microsoft.EntityFrameworkCore;
|
|||
|
|
using Microsoft.EntityFrameworkCore.Metadata.Builders;
|
|||
|
|
|
|||
|
|
namespace Vegasco.WebApi.Users;
|
|||
|
|
|
|||
|
|
public class UserTableConfiguration : IEntityTypeConfiguration<User>
|
|||
|
|
{
|
|||
|
|
public void Configure(EntityTypeBuilder<User> builder)
|
|||
|
|
{
|
|||
|
|
builder.HasKey(user => user.Id);
|
|||
|
|
}
|
|||
|
|
}
|