91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Linq插入數據問題怎么解決

發布時間:2021-12-02 09:46:35 來源:億速云 閱讀:151 作者:iii 欄目:編程語言

這篇文章主要講解了“Linq插入數據問題怎么解決”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“Linq插入數據問題怎么解決”吧!

今天用Linq插入數據,總是插入錯誤,說某個主鍵字段不能為空,我檢查了半天感覺主鍵字段沒有賦空值啊,實在是郁悶。

要插入數據的表結構是:

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),  )

插入數據的代碼:

RSSFeedRight feedRight = new RSSFeedRight();  feedRight.UserId = userId;  feedRight.FeedId = feedId;  feedRight.RightValue = 0 ;   _Db.RSSFeedRights.InsertOnSubmit(feedRight);  _Db.SubmitChanges();

每次插入時都提示說FeedId 不能插入空值,郁悶的不行,分明是給了非空值的!

后來仔細檢查,發現這個RSSFeedRight 實體類中居然還有兩個指向UserInfo 和 RSSFeed 表的字段,后來逐漸感覺到是外鍵設置問題引起的。立即通過google 搜 "linq foreign key insert",發現有不少人遇到相同問題,找到其中一篇帖子,其中關于這個問題是這樣描述的:

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.

也就是說我們不能將主鍵設置為和外鍵相同,否則就會出問題。找到問題所在,就好辦了,將表結構進行如下修改:

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 ,  )

感謝各位的閱讀,以上就是“Linq插入數據問題怎么解決”的內容了,經過本文的學習后,相信大家對Linq插入數據問題怎么解決這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

滨州市| 湖南省| 武邑县| 岳阳县| 武汉市| 大城县| 开平市| 阿勒泰市| 全南县| 行唐县| 中方县| 容城县| 普陀区| 开平市| 衡山县| 永兴县| 乐昌市| 湘潭市| 商河县| 益阳市| 临泉县| 会昌县| 东辽县| 黑山县| 元谋县| 滨州市| 吕梁市| 佛学| 祁阳县| 新昌县| 任丘市| 双流县| 庆安县| 临高县| 潢川县| 太仆寺旗| 万源市| 繁昌县| 江油市| 江源县| 江陵县|