那么我正在尝试用ASP.NET MVC构建一个Web应用程序,在与数据库的交互方面,我使用ENTITY Framework,我也在使用表单身份验证,我想显示我的用户名当前用户和他在这里工作的代理商的名称是我的两个班级 用户:
public partial class UTILISATEUR
{
public UTILISATEUR()
{
this.STATUT_DEMANDE = new HashSet<STATUT_DEMANDE>();
this.LISTE_NOIR = new HashSet<LISTE_NOIR>();
}
public short ID_USER { get; set; }
public short ID_AGENCE_APPARTENIR { get; set; }
public string IDENTIFIANT { get; set; }
public string MDP { get; set; }
public string ROLE { get; set; }
public virtual AGENCE AGENCE { get; set; }
public virtual ICollection<STATUT_DEMANDE> STATUT_DEMANDE { get; set; }
public virtual ICollection<LISTE_NOIR> LISTE_NOIR { get; set; }
}
} 和代理商:
public partial class AGENCE
{
public AGENCE()
{
this.DEMANDE_CRÉDIT = new HashSet<DEMANDE_CRÉDIT>();
this.UTILISATEUR = new HashSet<UTILISATEUR>();
}
public short ID_AGENCE { get; set; }
public string CODE_AGENCE { get; set; }
public string ADRESSE { get; set; }
public string NOM_AGENCE { get; set; }
public virtual ICollection<DEMANDE_CRÉDIT> DEMANDE_CRÉDIT { get; set; }
public virtual ICollection<UTILISATEUR> UTILISATEUR { get; set; }
}
}
为了显示我当前用户的用户名,我使用了这个:
<%:HttpContext.Current.User.Identity.Name %>
但我找不到如何显示当前用户所在机构的名称,如果有人可以帮助我,我还是初学者XD提前致谢