将ASP.NET身份与核心域模型分离 – 洋葱架构
|
我使用这个示例项目( https://github.com/imranbaloch/ASPNETIdentityWithOnion)作为我的应用程序架构,在这个示例中,核心是从包括身份框架在内的基础设施中完全取消的. 在此示例中,作者使用适配器模式来分离核心标识类(IdentityUser,IdentityRole …),并在Core层中提供类似它们的类. 现在这个示例项目中的问题是Domain模型(Product,Images)没有与模仿Identity模型的虚拟类(AppUser,ApplicationRole,AppliationUserRoles,…)链接. 然后我修改了代码以添加对AppUser的引用 public sealed class Image : BaseEntity
{
public Image()
{
Products = new HashSet<Product>();
}
public string Path { get; set; }
public AppUser AppUser { get; set; } // The Added Reference ...
public ICollection<Product> Products { get; set; }
}
如果我将“AppUser”导航属性放在“Image”类中,则创建的数据库将具有除标识框架的默认FIVE表之外的四个新表. 我需要将这些表合并为默认表. 编辑: 这是驻留在数据层中的身份模型(我无法从核心引用). public class ApplicationIdentityUser :
IdentityUser<int,ApplicationIdentityUserLogin,ApplicationIdentityUserRole,ApplicationIdentityUserClaim>,IDomainUser {
public ApplicationIdentityUser()
: base() {
Images = new HashSet<Image>();
}
public string Name { get; set; }
public virtual ICollection<Image> Images { get; set; }
}
public class ApplicationIdentityRole : IdentityRole<int,ApplicationIdentityUserRole>
{
public ApplicationIdentityRole(){}
public ApplicationIdentityRole(string name){Name = name;}
}
public class ApplicationIdentityUserRole : IdentityUserRole<int> {}
public class ApplicationIdentityUserClaim : IdentityUserClaim<int>{}
public class ApplicationIdentityUserLogin : IdentityUserLogin<int>{}
这也是我在OnModelCreating方法中的模型构建器: modelBuilder.Entity<Image>()
.Property(e => e.Id)
.HasDatabaseGeneratedOption(DatabaseGeneratedOption.Identity);
modelBuilder.Entity<Image>()
.HasMany(e => e.Products)
.WithRequired(e => e.Image)
.WillCascadeOnDelete(false);
modelBuilder.Entity<ApplicationIdentityUser>()
.Property(e => e.Id)
.HasDatabaseGeneratedOption(DatabaseGeneratedOption.Identity);
modelBuilder.Entity<ApplicationIdentityRole>()
.Property(e => e.Id)
.HasDatabaseGeneratedOption(DatabaseGeneratedOption.Identity);
modelBuilder.Entity<ApplicationIdentityUserClaim>()
.Property(e => e.Id)
.HasDatabaseGeneratedOption(DatabaseGeneratedOption.Identity);
解决方法好的,我通过执行以下操作解决了这个问题:>在您的Core中包含对Microsoft.AspNet.Identity.Core的依赖项 我知道依赖于Microsoft.AspNet.Identity.Core听起来很奇怪,但我们只需要接口IUser,它基本上也被认为是你的应用程序的核心域模型. 这里的终极理念是完全获取Microsoft.AspNet.Identity.EntityFramework. 有兴趣的开发者可以1,所以我可以在GitHub上传一个完整的工作样本. (编辑:南阳站长网) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |
- ASP.NET:从C#代码隐藏显示警报
- asp.net-mvc – MVC会话过期而不是身份验证
- asp-classic – 经典的asp / asp.net网站 – global.asa无效
- asp.net-mvc – 如何正确识别vs2008版本级别?
- asp.net-mvc – 已经使用相同的参数类型定义了一个名为“Cr
- asp.net-mvc – Url.Action生成查询字符串,以任何方式生成完
- asp.net – 会话固定 – 表单身份验证
- asp.net – 注册.NET 4.5 IIS 10 Windows 10
- 如何在Asp.Net Mvc中进行Basecamp风格的账户?
- asp.net-mvc – 如何从mvc中的控制器中设置隐藏字段的值
- asp.net – 为每个网站/应用程序创建单独的IIS应
- asp.net – 测试Oracle存储过程的最简单的方法
- asp.net-mvc – asp.net mvc 4从控制器按钮调用方
- asp.net – 如何使用AntiXss Library正确清理内容
- asp.net – 允许服务器/ usercontrol上的任何属性
- asp.net-mvc – 重定向页面的TempData?
- asp.net-mvc – 有没有办法重命名RequestVerific
- ASP.NET成员资格 – 让用户使用以前的密码
- asp.net-mvc-4 – .net 4.5 ASP.Net web API JSO
- asp.net-mvc – URL中的ASP.NET MVC冒号
