DocSpace-buildtools/common/ASC.Core.Common/EF/Model/UserGroup.cs
2019-12-03 18:20:21 +03:00

34 lines
855 B
C#

using System;
using System.ComponentModel.DataAnnotations.Schema;
using Microsoft.EntityFrameworkCore;
namespace ASC.Core.Common.EF
{
[Table("core_usergroup")]
public class UserGroup
{
public int Tenant { get; set; }
public Guid UserId { get; set; }
public Guid GroupId { get; set; }
[Column("ref_type")]
public UserGroupRefType RefType { get; set; }
public bool Removed { get; set; }
[Column("last_modified")]
public DateTime LastModified { get; set; }
}
public static class DbUserGroupExtension
{
public static void AddUserGroup(this ModelBuilder modelBuilder)
{
modelBuilder.Entity<UserGroup>()
.HasKey(c => new { c.Tenant, c.UserId, c.GroupId, c.RefType });
}
}
}