我一直在尝试这样做,但找不到解决方案。任何帮助都很感激,链接到一个例子或简单的教程,我只是想熟悉MVC。如果这个问题已经得到回答,我很抱歉,但我无法找到一个有效的解决方案。我想使用存储在Identity ASPNETUSER表中的Email字段作为另一个表中的外键。这是我玩的一些代码,看看我是否能让它工作,但出现了这个错误:"运行所选代码生成器时出错:'无法检索'ZooMenagerie.Models.UserDetails'的元数据。不支持每种类型有多个对象集。对象集'ApplicationUsers'和'Users'都可以包含'ZooMenagerie.Modules.ApplicationUser'类型的实例。'"这个错误出现在我尝试构建UserDetails模型之后,我选择的数据上下文类称为ApplicationDbContext(ZooMenagerie.Models)。N.B-我有两个Context类,一个是MVC附带的ApplicationDbContext和ZooMenagerieContext。我已经将ApplicationDbContext指向同一个数据库,如果这是我做错的事情,请告诉我。
IdentityModels.cs
using System.Data.Entity;
using System.Security.Claims;
using System.Threading.Tasks;
using Microsoft.AspNet.Identity;
using Microsoft.AspNet.Identity.EntityFramework;
namespace ZooMenagerie.Models
{
// You can add profile data for the user by adding more properties to your ApplicationUser class, please visit http://go.microsoft.com/fwlink/?LinkID=317594 to learn more.
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 virtual UserDetails UserDetails { get; set; }
}
public class ApplicationDbContext : IdentityDbContext<ApplicationUser>
{
public ApplicationDbContext()
: base("name=ZooMenagerieContext", throwIfV1Schema: false)
{
}
public static ApplicationDbContext Create()
{
return new ApplicationDbContext();
}
public System.Data.Entity.DbSet<ZooMenagerie.Models.UserDetails> UserDetails { get; set; }
public System.Data.Entity.DbSet<ZooMenagerie.Models.ApplicationUser> ApplicationUsers { get; set; }
}
}
UserDetails.cs
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Web;
namespace ZooMenagerie.Models
{
public class UserDetails
{
[Key, ForeignKey("Id")]
public string knumber { get; set; }
public virtual ApplicationUser ApplicationUser { get; set; }
}
}
我做了一个变通方法,将其重命名为:
public virtual ApplicationUser ApplicationUser { get; set; }
至
public virtual ApplicationUser User { get; set; }
在重构代码之后,我搭建了我的代码,删除了
public System.Data.Entity.DbSet<ZooMenagerie.Models.ApplicationUser> ApplicationUsers { get; set; }
转到我的控制器,并将ApplicationUser的任何用法更改为User,因此例如,在我的索引类中,它看起来是这样的:
public ActionResult Index()
{
var userDetails = db.UserDetails.Include(u => u.User);
return View(userDetails.ToList());
}
我的控制器都使用User而不是applicationuser。