mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-04-05 17:38:01 +08:00
27 lines
868 B
C#
27 lines
868 B
C#
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Data.Entity.ModelConfiguration;
|
|
using OpenAuth.Domain;
|
|
|
|
namespace OpenAuth.Repository.Models.Mapping
|
|
{
|
|
public class UserRoleMap : EntityTypeConfiguration<UserRole>
|
|
{
|
|
public UserRoleMap()
|
|
{
|
|
// Primary Key
|
|
this.HasKey(t => t.Id);
|
|
|
|
// Properties
|
|
this.Property(t => t.Id);
|
|
|
|
// Table & Column Mappings
|
|
this.ToTable("UserRole");
|
|
this.Property(t => t.Id).HasColumnName("Id");
|
|
this.Property(t => t.RoleId).HasColumnName("RoleId");
|
|
this.Property(t => t.UserId).HasColumnName("UserId");
|
|
this.Property(t => t.OperateTime).HasColumnName("OperateTime");
|
|
this.Property(t => t.OperatorId).HasColumnName("OperatorId");
|
|
}
|
|
}
|
|
}
|