主頁(yè) > 知識(shí)庫(kù) > Linq to SQL 插入數(shù)據(jù)時(shí)的一個(gè)問題

Linq to SQL 插入數(shù)據(jù)時(shí)的一個(gè)問題

熱門標(biāo)簽:廣東防封卡外呼系統(tǒng)原理是什么 電銷機(jī)器人公司 需要哪些牌照 分享百度地圖標(biāo)注多個(gè)位置 長(zhǎng)沙智能外呼系統(tǒng) 外呼系統(tǒng)改進(jìn) 菏澤語(yǔ)音電銷機(jī)器人加盟公司 地圖標(biāo)注牌 湖南電腦外呼系統(tǒng)平臺(tái) 知名電銷機(jī)器人價(jià)格

復(fù)制代碼 代碼如下:

create table RSSFeedRight
(
FeedId int Foreign Key (FeedId) References RSSFeed(FeedId) NOT NULL , -- FeedId ,
UserId int Foreign Key (UserId) References UserInfo(UserId) NOT NULL , -- UserId ,
RightValue bigint NOT NULL Primary key (UserId, FeedId),
)

插入數(shù)據(jù)的代碼

RSSFeedRight feedRight = new RSSFeedRight();
feedRight.UserId = userId;
feedRight.FeedId = feedId;
feedRight.RightValue = 0 ;
_Db.RSSFeedRights.InsertOnSubmit(feedRight);
_Db.SubmitChanges();
每次插入時(shí)都提示說(shuō)FeedId 不能插入空值,郁悶的不行,分明是給了非空值的!
后來(lái)仔細(xì)檢查,發(fā)現(xiàn)這個(gè)RSSFeedRight 實(shí)體類中居然還有兩個(gè)指向UserInfo 和 RSSFeed 表的字段,后來(lái)逐漸感覺到是外鍵設(shè)置問題引起的。立即通過(guò)google 搜 "linq foreign key insert"
發(fā)現(xiàn)有不少人遇到相同問題
找到其中一篇帖子
http://social.msdn.microsoft.com/Forums/en-US/linqprojectgeneral/thread/e14f76ec-0ffe-4dd1-893c-6a4c8440c54a
其中關(guān)于這個(gè)問題是這樣描述的
The mapping information (Assocation attribute on Table1 Table2) has the foreign key dependency going in the wrong direction. It's claiming that the primary-key in table1 (the one that is auto-incremented) is a foreign key to the primary key in table2. You want that just the opposite. You can change this in the designer, DBML file or directly in the code (for a quick test) by changing IsForeignKey value for both associations.
也就是說(shuō)我們不能將主鍵設(shè)置為和外鍵相同,否則就會(huì)出問題。找到問題所在,就好辦了,將表結(jié)構(gòu)進(jìn)行如下修改

復(fù)制代碼 代碼如下:

create table RSSFeedRight
(
Id int identity ( 1 , 1 ) NOT NULL Primary Key ,
FeedId int Foreign Key (FeedId) References RSSFeed(FeedId) NOT NULL , -- FeedId ,
UserId int Foreign Key (UserId) References UserInfo(UserId) NOT NULL , -- UserId ,
RightValue bigint NOT NULL ,
)

問題解決。
老兵遇到新問題,技術(shù)不經(jīng)常更新就要老化。

標(biāo)簽:泉州 天水 商洛 呼和浩特 西寧 美容院 珠海 福建

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《Linq to SQL 插入數(shù)據(jù)時(shí)的一個(gè)問題》,本文關(guān)鍵詞  Linq,SQL,插入,數(shù)據(jù),時(shí),的,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《Linq to SQL 插入數(shù)據(jù)時(shí)的一個(gè)問題》相關(guān)的同類信息!
  • 本頁(yè)收集關(guān)于Linq to SQL 插入數(shù)據(jù)時(shí)的一個(gè)問題的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章