2024-08-17 16:38:40 +02:00
|
|
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
|
|
using Microsoft.EntityFrameworkCore.Metadata.Builders;
|
|
|
|
|
|
|
2025-06-12 18:22:37 +02:00
|
|
|
|
namespace Vegasco.Server.Api.Users;
|
2024-08-17 16:38:40 +02:00
|
|
|
|
|
|
|
|
|
|
public class UserTableConfiguration : IEntityTypeConfiguration<User>
|
|
|
|
|
|
{
|
|
|
|
|
|
public void Configure(EntityTypeBuilder<User> builder)
|
|
|
|
|
|
{
|
|
|
|
|
|
builder.HasKey(user => user.Id);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|