我在C#中使用LINQ to SQL 2个元素(对于这个问题,他们说它们是游戏和控制台),具有一对多的关系(一种类型的控制台可以用来玩很多游戏)。
让我们说这是我的游戏类:
public class Game {
public int GameID {get; set;} ///this is the PK
public int ConsoleID {get; set;} ///this is the FK
public string Title {get; set;} ///this is the title of the game.
...
}
这是我的控制台类:
public class Console {
public int ConsoleID {get; set;} ///this is the PK
public string ConsoleName {get; set;} ///this is the name of the console
public int GenerationNumber {get; set;} ///this is the generation of the console. e.g: The Nintendo 64 is a 3rd generation console (after NES and SNES)
...
}
在DBML文件中,我有两个类之间的关联: 基数:OneToMany 子属性是内部的,称为游戏(无修饰符) 父属性是公共的,是控制台。 参与属性显然是Game.ConsoleID和Console.ConsoleID。 唯一设置为false。
我想在数据库中添加一个游戏。执行此操作后,我将所有属性设置为其对应的值。假设游戏是XBOX360游戏,Game.Console。 propertyname 将显示有关XBOX360的信息。
但是,当我使用服务和存储库将游戏添加到数据库(SQL Server 08)时,我在控制台上收到DuplicateKeyException。因此,我认为这意味着它正在尝试将有关控制台的现有信息添加到控制台表中。显然,我不希望这种情况发生。
这是我到目前为止所尝试的内容:
尝试#1:
Game.Console = null; //fails - set the ID to 0, and tried to remove the relationship)
尝试#2:
Game.Console = null;
Game.ConsoleID = 6; //fails - ForeignKeyReferenceAlreadyHasValueException is thrown
有什么想法吗?
答案 0 :(得分:1)