gpt4 book ai didi

c# - Entity Framework : Setting a Foreign Key Property

转载 作者:可可西里 更新时间:2023-11-01 03:09:01 26 4
gpt4 key购买 nike

我们有一个大致如下所示的表格:

CREATE TABLE Lockers 
{
UserID int NOT NULL PRIMARY KEY (foreign key),
LockerStyleID int (foreign key),
NameplateID int (foreign key)
}

所有键都与其他表相关,但由于应用程序的分布方式,我们更容易将 ID 作为参数传递。所以我们想这样做:

Locker l = new Locker { 
UserID = userID,
LockerStyleID = lockerStyleID,
NameplateID = nameplateID
};
entities.AddLocker(l);

我们可以在 LINQ-to-SQL 中完成,但不能在 EF 中完成?

最佳答案

这个缺失的功能似乎惹恼了很多人。

  • 好消息:微软将通过 .NET 4.0 解决这个问题。
  • 坏消息:目前,或者如果您卡在 3.5 上,您必须做一些工作,但这是可能的。

你必须这样做:

Locker locker = new Locker();
locker.UserReference.EntityKey = new System.Data.EntityKey("entities.User", "ID", userID);
locker.LockerStyleReference.EntityKey = new EntityKey("entities.LockerStyle", "ID", lockerStyleID);
locker.NameplateReference.EntityKey = new EntityKey("entities.Nameplate", "ID", nameplateID);
entities.AddLocker(locker);
entities.SaveChanges();

关于c# - Entity Framework : Setting a Foreign Key Property,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/480872/

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