EF Code First:定义外键
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了EF Code First:定义外键相关的知识,希望对你有一定的参考价值。
我看了一些其他的答案和很多文章,但这个简单的部分仍然让我失望。我首先使用EF代码4.1,但如果它更容易,我很乐意转到更新的版本。我有一个像这样的主要事实表:
namespace Spend.Models
{
public class ExpenseItem
{
[Key]
public String UniqueID_ERLineID { get; set; }
public String ERNum { get; set; }
public String ItemNum { get; set; }
public String Parent_Expense_Item { get; set; }
public String Card_Number { get; set; }
...
以及与ExpenseItems有多对一关系的几个表格:
public class ExpenseItemAccounting
{
[Key]
public String UniqueID_Accounting { get; set; }
public String ERLineID { get; set; }
public String ERNum { get; set; }
public String ItemNum { get; set; }
我们可以看到,第二个表中的ERLineID在第一个表中连接到UniqueID_ErLineID,因此我通常依赖的“约定”不起作用。所以我需要使用虚拟ICollection - 但我希望它将这些字段指定为链接。如何做到这一点的任何帮助表示赞赏。
PS。我目前无法重命名数据库字段。
@Luke:
我应用你提到的变化,它们是有道理的。但是我得到以下错误:
System.Data.Entity.ModelConfiguration.ModelValidationException occurred
Message=One or more validation errors were detected during model generation:
System.Data.Edm.EdmAssociationType: : Multiplicity conflicts with the referential constraint in Role 'ExpenseItemAccounting_ExpenseItem_Target' in relationship 'ExpenseItemAccounting_ExpenseItem'. Because all of the properties in the Dependent Role are non-nullable, multiplicity of the Principal Role must be '1'.
System.Data.Edm.EdmAssociationEnd: : Multiplicity is not valid in Role 'ExpenseItemAccounting_ExpenseItem_Source' in relationship 'ExpenseItemAccounting_ExpenseItem'. Because the Dependent Role refers to the key properties, the upper bound of the multiplicity of the Dependent Role must be �1�.
Source=EntityFramework
StackTrace:
at System.Data.Entity.ModelConfiguration.Edm.EdmModelExtensions.ValidateAndSerializeCsdl(EdmModel model, XmlWriter writer)
at System.Data.Entity.DbModelBuilder.Build(DbProviderManifest providerManifest, DbProviderInfo providerInfo)
at System.Data.Entity.DbModelBuilder.Build(DbConnection providerConnection)
at System.Data.Entity.Internal.LazyInternalContext.CreateModel(LazyInternalContext internalContext)
at System.Data.Entity.Internal.RetryLazy`2.GetValue(TInput input)
at System.Data.Entity.Internal.LazyInternalContext.InitializeContext()
at System.Data.Entity.Internal.InternalContext.GetEntitySetAndBaseTypeForType(Type entityType)
at System.Data.Entity.Internal.Linq.InternalSet`1.Initialize()
at System.Data.Entity.Internal.Linq.InternalSet`1.get_InternalContext()
at System.Data.Entity.Infrastructure.DbQuery`1.System.Linq.IQueryable.get_Provider()
at System.Linq.Queryable.SelectMany[TSource,TCollection,TResult](IQueryable`1 source, Expression`1 collectionSelector, Expression`1 resultSelector)
at EmailClient.Prog.getData() in C:MFDropboxDev_LN_Projects 4_QAEmailClientEmailClientProg.cs:line 172
InnerException:
这是在我尝试以下linq查询时出现的:
var geee = (from e in db.ExpenseItems
from f in db.ExpenseItemFbtItems
where
e.Item_Transaction_Date.Value.Year == 2011 &&
e.Item_Transaction_Date.Value.Month == 8
select new { A = e.UniqueID_ERLineID, B = f.ERLineID.First() });
我实际上希望能够说e.ExpenseItemAccounting.ItemNum或类似的东西 - 我是否需要在ExpenseItem定义中添加一些内容来实现这一目标?
我的模型设置如下。 base.OnModelCreating通过intellisense出现,我尝试使用/不使用它来获得相同的结果:
public class SpendDB : DbContext
{
public DbSet<ExpenseAttachment> ExpenseAttachments {get; set; }
public DbSet<ExpenseComment> ExpenseComments {get; set; }
public DbSet<ExpenseItemAccounting> ExpenseAccountings {get; set; }
public DbSet<ExpenseItemFbtItem> ExpenseItemFbtItems {get; set; }
public DbSet<ExpenseItem> ExpenseItems {get; set; }
public DbSet<ExpenseItemViolation> ExpenseItemViolations {get; set; }
protected override void OnModelCreating(DbModelBuilder modelBuilder)
{
base.OnModelCreating(modelBuilder);
modelBuilder.Entity<ExpenseItemAccounting>().HasOptional(e => e.ExpenseItem).WithMany().HasForeignKey(e => e.UniqueID_Accounting);
}
}
也许我需要将虚拟ICollection放在ExpenseItem定义中?或者它可能是另一种方式 - 比如modelBuilder.Entity有可选的ExpenseItemAccounting吗?这对我来说听起来更直观,但我(显然)并不是很擅长这一点,所以请耐心等待!
再次感谢
做这个:
public class ExpenseItemAccounting
{
[Key]
public String UniqueID_Accounting { get; set; }
public ExpenseItem ExpenseItem{get;set;}
public String ERLineID { get; set; }
public String ERNum { get; set; }
public String ItemNum { get; set; }
}
然后在你的modelBuilder中使用
modelBuilder.Entity<ExpenseItemAccounting>()
.HasOptional(e => e.ExpenseItem).WithMany()
.HasForeignKey(e => e.UniqueID_Accounting );
编辑:
要将导航属性配置为在另一端具有集合,您可以像这样添加它
public class ExpenseItem
{
[Key]
public String UniqueID_ERLineID { get; set; }
public String ERNum { get; set; }
public String ItemNum { get; set; }
public String Parent_Expense_Item { get; set; }
public String Card_Number { get; set; }
public ICollection<ExpenseItemAccounting> ExpenseItemAccountings{ get; set; }
}
然后通过修改模型构建器配置将其连接起来,如下所示:
modelBuilder.Entity<ExpenseItemAccounting>()
.HasOptional(e => e.ExpenseItem).WithMany(e=> e.ExpenseItems)
.HasForeignKey(e => e.UniqueID_Accounting );
这将连接它以便ExpenseItem将具有所有子ExpensItemAccounting的列表,如果更有意义,您还可以添加这个的单数版本,例如:
public class ExpenseItem
{
[Key]
public String UniqueID_ERLineID { get; set; }
public String ERNum { get; set; }
public String ItemNum { get; set; }
public String Card_Number { get; set; }
public ExpenseItemAccounting Parent_Expense_Item { get; set; }
}
并使用modelBuilder进行配置:
modelBuilder.Entity<ExpenseItemAccounting>()
.HasOptional(e => e.ExpenseItem)
.WithOptionalDependent(e=>e.Parent_Expense_Item);
我想如果你也想要连接FK引用(不仅仅是导航属性),你需要在一个单独的语句中这样做,但这更加繁琐。
看一下导航属性的MSDN页面以及如何使用modelBuilder,因为它有许多高级内容的好例子。
http://msdn.microsoft.com/en-us/library/hh295843(v=vs.103).aspx
其中一个解决方案是将ERLineID的可空值更改为TRUE
以上是关于EF Code First:定义外键的主要内容,如果未能解决你的问题,请参考以下文章