与aspnetusers表的关系

时间:2018-12-18 18:24:25

标签: c# asp.net asp.net-mvc model-view-controller

下午好。 我正在处理三个项目,在一个项目中有后端应用程序,在另一个类库项目中有我的模型。后端与我的模型有关。

我正在使用身份认证。在下面的表格中,我需要一个关系。

enter image description here

public class Reserva
{
    [Key]
    public int IdReserva { get; set; }

    public int IdCancha { get; set; }

    public string Descripcion { get; set; }

    [DataType(DataType.DateTime)]
    [DisplayFormat(DataFormatString ="{0:dd/MMM/yyyy hh:mm tt}")]
    public DateTime FechaInicio{ get; set; }

    [DataType(DataType.DateTime)]
    [DisplayFormat(DataFormatString = "{0:dd/MMM/yyyy hh:mm tt}")]
    public DateTime FechaFin { get; set; }

}

IdentityModels.cs

public class ApplicationUser : IdentityUser
{
    public async Task<ClaimsIdentity> GenerateUserIdentityAsync(UserManager<ApplicationUser> manager)
    {
        // Note the authenticationType must match the one defined in CookieAuthenticationOptions.AuthenticationType
        var userIdentity = await manager.CreateIdentityAsync(this, DefaultAuthenticationTypes.ApplicationCookie);
        // Add custom user claims here
        return userIdentity;
    }

    public string FirstName { get; set; }

    public string LastName { get; set; }

}

添加以下行时出现问题,因为我的模型没有引用到后端

Reservas.cs

public virtual ApplicationUser ApplicationUser 

我想要我的Reserves模型,添加用户ID

谢谢。

0 个答案:

没有答案