您好,欢迎来到三六零分类信息网!老站,搜索引擎当天收录,欢迎发信息

Linq to SQL 插入数据时的一个问题

2025/4/29 3:20:34发布15次查看
今天用linqtosql插入数据,总是插入错误,说某个主键字段不能为空,我检查了半天感觉主键字段没有赋空值啊,实在是郁闷。要插入数据的表结构是
代码如下:
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
发现有不少人遇到相同问题
找到其中一篇帖子
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 ,
)
问题解决。
老兵遇到新问题,技术不经常更新就要老化。
该用户其它信息

VIP推荐

免费发布信息,免费发布B2B信息网站平台 - 三六零分类信息网 沪ICP备09012988号-2
企业名录 Product