程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> 其他數據庫知識 >> MSSQL >> Linq to SQL 拔出數據時的一個成績

Linq to SQL 拔出數據時的一個成績

編輯:MSSQL

Linq to SQL 拔出數據時的一個成績。本站提示廣大學習愛好者:(Linq to SQL 拔出數據時的一個成績)文章只能為提供參考,不一定能成為您想要的結果。以下是Linq to SQL 拔出數據時的一個成績正文



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 表的字段,後來逐步感到到是外鍵設置成績惹起的。立刻經由過程谷歌 搜 "linq foreign key insert"
發明有很多人碰到雷同成績
找到個中一篇帖子
http://social.msdn.microsoft.com/Forums/en-US/linqprojectgeneral/thread/e14f76ec-0ffe-4dd1-893c-6a4c8440c54a
個中關於這個成績是如許描寫的
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 ,
)

成績處理。
老兵碰到新成績,技巧不常常更新就要老化。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved