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

Linq插入数据的代码:

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

每次Linq插入数据时都提示说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中怎么插入数据
当前URL:https://www.cdcxhl.com/article20/jiedjo.html

成都网站建设公司_创新互联,为您提供标签优化虚拟主机商城网站App设计网站策划网站内链

广告

声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联

网站建设网站维护公司