我使用sqlmembership provider
并创建了一些表。我需要它的user
桌子。
我的应用程序有三种类型的用户teachers
:students
和other users
。所以我想了三张桌子给他们。
他们每个人都有一个username
由会员提供者注册并保存在自己的表中。
现在我不知道如何使用实体框架来建立保存在成员资格表中的用户名之间的关系teachers
或表。students
我想我可以在成员提供者创建的表和我的表之间添加一对一的关系,users
然后逆向工程创建表以首先编码,但似乎不允许更改这些表。
有人可以告诉我如何将教师或学生与他们的用户名建立关系(我的意思是他们的会员信息)吗?
更多详细信息:这里是代码优先表
public class aspnet_Users
{
public aspnet_Users()
{
this.aspnet_PersonalizationPerUser = new List<aspnet_PersonalizationPerUser>();
this.aspnet_Roles = new List<aspnet_Roles>();
}
public System.Guid ApplicationId { get; set; }
public System.Guid UserId { get; set; }
public string UserName { get; set; }
public string LoweredUserName { get; set; }
public string MobileAlias { get; set; }
public bool IsAnonymous { get; set; }
public System.DateTime LastActivityDate { get; set; }
public virtual aspnet_Applications aspnet_Applications { get; set; }
public virtual aspnet_Membership aspnet_Membership { get; set; }
public virtual ICollection<aspnet_PersonalizationPerUser> aspnet_PersonalizationPerUser { get; set; }
public virtual aspnet_Profile aspnet_Profile { get; set; }
public virtual ICollection<aspnet_Roles> aspnet_Roles { get; set; }
}
public class Techer
{
[Key]
public int TeacherId { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
public string NationalNumber { get; set; }
public string PhoneNumber { get; set; }
public string Description { get; set; }
public int OfficeId { get; set; }
public virtual Office Office { get; set; }
}
public class Student
{
public int StudentId { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
public int OfficeId { get; set; }
public virtual Office Office { get; set; }
}