gpt4 book ai didi

c# - ASP .NET C# MVC 5 代码优先外键属性/列名称

转载 作者:行者123 更新时间:2023-11-30 18:21:31 25 4
gpt4 key购买 nike

我是 MVC 的新手,我在 Visual Studio 2015 中将 MVC 5 用于 ASP .NET C# Web 应用程序。

代码优先。

我的目标:在代码中定义外键关系,让脚手架在数据库中创建键。

我很难做到这一点。我不想使用 Fluent API如果可能的话。至少,我想了解 1) 为什么我需要使用 Fluent API,以及 2) 实际上如何使用它。

模型

应用类型模型

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Web;

namespace MVCModelFirstSample.Models
{
public class ApplicationType
{
[Key]
[DatabaseGeneratedAttribute(DatabaseGeneratedOption.Identity)]
public int ApplicationTypeID { get; set; }

[Required]
[MaxLength(50)]
public string ApplicationTypeShortDescription { get; set; }

[Required]
[MaxLength(500)]
public string ApplicationTypeLongDescription { get; set; }

[Required]
public int CreatedByUserID { get; set; }

[Required]
[DataType(DataType.Date)]
public DateTime CreatedDate { get; set; }

[Required]
public int ModifiedByUserID { get; set; }

[Required]
[DataType(DataType.Date)]
public DateTime ModifiedDate { get; set; }
}
}

现在,我希望创建其他一些使用 ApplicationTypeID 作为外键的类。我创建了一个:

MVC5应用

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Web;

namespace MVCModelFirstSample.Models
{
public class MVC5Application
{
[Key]
[DatabaseGeneratedAttribute(DatabaseGeneratedOption.Identity)]
public int MVC5ApplicationID { get; set; }

[Required]
public int ApplicationTypeID { get; set; }

[Required]
[MaxLength(500)]
public string MVC5ApplicationDescription { get; set; }

[Required]
public int CreatedByUserID { get; set; }

[Required]
[DataType(DataType.Date)]
public DateTime CreatedDate { get; set; }

[Required]
public int ModifiedByUserID { get; set; }

[Required]
[DataType(DataType.Date)]
public DateTime ModifiedDate { get; set; }
}
}

就其本身而言,这些模型有效,我可以构建 Controller ,正确生成数据库等。但是,数据库中 MVC5Application 表中的 ApplicationTypeID 与 ApplicationType 表之间没有链接。

根据我的一些研究,有一些迹象表明可能会创建自动生成的外键关系,但尚不清楚。它没有。

所以,我的第一个想法是在 MVCApplication 类的属性定义之上添加一个 [ForeignKey("ApplicationTypeID")] 属性。

对我来说,这样做是有道理的(它是否真的明智是另一回事)。无论如何,片段:

namespace MVCModelFirstSample.Models
{
public class MVC5Application
{
[Key]
[DatabaseGeneratedAttribute(DatabaseGeneratedOption.Identity)]
public int MVC5ApplicationID { get; set; }

[Required]
[ForeignKey("ApplicationTypeID")]
public int ApplicationTypeID { get; set; }

它会构建,当我尝试通过创建 Controller 操作添加新的 MVCApplication 时:

An exception of type 'System.InvalidOperationException' occurred in EntityFramework.dll but was not handled in user code Additional information: The property 'ApplicationTypeID' cannot be configured as a navigation property. The property must be a valid entity type and the property should have a non-abstract getter and setter. For collection properties the type must implement ICollection where T is a valid entity type.

这是我感到困惑的地方。我发誓,我已经搜索、搜索和搜索了。我找到了不同的建议,但我不清楚如何设置它。

一个可能的选择是将类声明为键。我想,也许,它会自动检测类(class)的 ID 并使用它?不确定,但是嘿,值得一试,对吧?似乎您几乎可以在这些字符串值中放入任何您想要的东西。在使用之前没有人会提示。

public class MVC5Application
{
[Key]
[DatabaseGeneratedAttribute(DatabaseGeneratedOption.Identity)]
public int MVC5ApplicationID { get; set; }

[Required]
[ForeignKey("ApplicationType")]
public int ApplicationTypeID { get; set; }

错误:

An exception of type 'System.InvalidOperationException' occurred in EntityFramework.dll but was not handled in user code Additional information: The ForeignKeyAttribute on property 'ApplicationTypeID' on type 'MVCModelFirstSample.Models.MVC5Application' is not valid. The navigation property 'ApplicationType' was not found on the dependent type 'MVCModelFirstSample.Models.MVC5Application'. The Name value should be a valid navigation property name.

无论如何,这可能不是最好的主意。

是否有可能通过定义类并提供外键以代码优先的方式生成外键关系?我试图让事情尽可能简单。

理想情况下,我希望使用具有不一定匹配的数据库列名称的键。例如,我有一个 User 表,其 UserID 值与其他表中的 CreatedByUserID 相关。

话虽如此,我引导 Fluent API。

我遇到了麻烦。我需要查找和使用的 DbContext 到底在哪里?我想我终于弄明白了。

因为我使用了 Internet 身份验证,所以我有 IdentityModel.cs,其中包含以下内容:

public class ApplicationDbContext : IdentityDbContext<ApplicationUser>
{
public ApplicationDbContext() : base("DefaultConnection", throwIfV1Schema: false)
{
}

...然后我会添加我的覆盖:

public class ApplicationDbContext : IdentityDbContext<ApplicationUser>
{
public ApplicationDbContext() : base("DefaultConnection", throwIfV1Schema: false)
{
}

protected override void OnModelCreating(DbModelBuilder modelBuilder)
{
base.OnModelCreating(modelBuilder);
}

在覆盖中,我将添加我的 Fluent API。

根据 Configuring Relationships with the Fluent API :

Renaming a Foreign Key That Is Not Defined in the Model

If you choose not to define a foreign key on the CLR type, but want to specify what name it should have in the database, do the following:

modelBuilder.Entity<Course>() 
.HasRequired(c => c.Department)
.WithMany(t => t.Courses)
.Map(m => m.MapKey("ChangedDepartmentID"));

没有。我无法直接使用此代码。我所要做的就是坐下来查看示例类并将它们与我自己的类相关联。我意识到我对这些东西应该如何工作存在一些根本性的误解或理解。

我必须这样修改我的类:

public class ApplicationType
{
[Key]
[DatabaseGeneratedAttribute(DatabaseGeneratedOption.Identity)]
public int ApplicationTypeID { get; set; }

[Required]
[MaxLength(50)]
public string ApplicationTypeShortDescription { get; set; }

[Required]
[MaxLength(500)]
public string ApplicationTypeLongDescription { get; set; }

[Required]
public int CreatedByUserID { get; set; }

[Required]
[DataType(DataType.Date)]
public DateTime CreatedDate { get; set; }

[Required]
public int ModifiedByUserID { get; set; }

[Required]
[DataType(DataType.Date)]
public DateTime ModifiedDate { get; set; }

public virtual ICollection<MVC5Application> Applications { get; set; }
}

public class MVC5Application
{
[Key]
[DatabaseGeneratedAttribute(DatabaseGeneratedOption.Identity)]
public int MVC5ApplicationID { get; set; }

//[Required]
//[ForeignKey("ApplicationType")]
//public int ApplicationTypeID { get; set; }

public virtual ApplicationType ApplicationType { get; set; }

[Required]
[MaxLength(500)]
public string MVC5ApplicationDescription { get; set; }

[Required]
public int CreatedByUserID { get; set; }

[Required]
[DataType(DataType.Date)]
public DateTime CreatedDate { get; set; }

[Required]
public int ModifiedByUserID { get; set; }

[Required]
[DataType(DataType.Date)]
public DateTime ModifiedDate { get; set; }
}

现在,遵循 Fluent API 文章中概述的模式:

protected override void OnModelCreating(DbModelBuilder modelBuilder)
{
modelBuilder.Entity<MVC5Application>()
.HasRequired(r => r.ApplicationType)
.WithMany(w => w.Applications)
.Map(m => m.MapKey("ApplicationTypeID"));

base.OnModelCreating(modelBuilder);
}

经过大量的迁移(Code First Migrations)工作:

我认为我得到了我想要的结果:

enter image description here

但是,我必须说实话。在这一点上,整个过程是相当不直观的。

有没有更好的办法?

此外,如果有人对使用代码优先创建数据库表有任何其他引用,以便更容易理解,我将不胜感激。

谢谢

最佳答案

使用流畅的 API,您可以让您的实体摆脱依赖于持久性的东西,并将您的模型保存在类库中,而不依赖于 EF。我通常为 DbContext 创建第二个项目,其中包含配置并且是唯一依赖于 EF 的项目。

如果您声明导航属性(就像您最后使用 ApplicationType 属性所做的那样,EF 会自动为您创建外键,这使得在您的对象模型中导航变得容易得多。ID 用于数据库,在您的代码中你想使用真实类型的属性。

有关代码优先的更多信息,您可能会在 EF Core documentation 中找到.

关于c# - ASP .NET C# MVC 5 代码优先外键属性/列名称,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35323477/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com