技巧:轻松搞定Linq插入数据问题

开发 后端
本文介绍了一种Linq 插入数据的典型问题与它的解决办法,如果大家有更好的方法,也欢迎拿出来一起讨论。

Linq 插入数据是一个很常规的操作,既然是常规操作,也就意味着会更容易出现一些稀奇古怪的问题,今天就让我们来看一个典型问题的典型解决办法。

今天用Linq插入数据,总是插入错误,说某个主键字段不能为空,我检查了半天感觉主键字段没有赋空值啊,实在是郁闷。

要插入数据的表结构是:

  1. create table RSSFeedRight  
  2. (  
  3. FeedId int Foreign Key (FeedId) References RSSFeed(FeedId) NOT NULL , -- FeedId ,   
  4. UserId int Foreign Key (UserId) References UserInfo(UserId) NOT NULL , -- UserId ,   
  5. RightValue bigint NOT NULL Primary key (UserId, FeedId),  

插入数据的代码:

  1. RSSFeedRight feedRight = new RSSFeedRight();  
  2. feedRight.UserId = userId;  
  3. feedRight.FeedId = feedId;  
  4. feedRight.RightValue = 0 ;  
  5.  
  6. _Db.RSSFeedRights.InsertOnSubmit(feedRight);  
  7. _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.

也就是说我们不能将主键设置为和外键相同,否则就会出问题。找到问题所在,就好办了,将表结构进行如下修改:

  1. create table RSSFeedRight  
  2. (  
  3. Id int identity ( 1 , 1 ) NOT NULL Primary Key ,  
  4. FeedId int Foreign Key (FeedId) References RSSFeed(FeedId) NOT NULL , -- FeedId ,   
  5. UserId int Foreign Key (UserId) References UserInfo(UserId) NOT NULL , -- UserId ,   
  6. RightValue bigint NOT NULL ,  

问题解决。

老兵遇到新问题,技术不经常更新就要老化。

【编辑推荐】

  1. LINQ——语言级集成查询入门指南
  2. LINQ查询的目的与实现手段
  3. LINQ查询表达式深入剖析
  4. 实例二:绑定到LINQ查询的结果
  5. LINQ的演变及其对C#设计的影响
责任编辑:林琳 来源: e800技术客
相关推荐

2016-03-17 17:35:15

云容器虚拟化管理Docker

2009-09-17 08:47:00

Linq插入数据

2024-09-10 10:04:47

2023-11-13 08:16:08

MySQL数据数据库

2016-09-09 01:07:06

数据中心容量规划数据中心

2009-11-13 17:32:37

2009-09-15 23:21:17

Linq插入数据

2022-09-16 08:04:25

阿里云权限网络

2017-05-11 15:01:43

Androidweb布局

2009-12-11 15:37:58

Linux日志处理

2015-03-10 11:34:22

SQL Server数据汇总ROUPBY

2022-04-28 18:47:04

Pandas函数Python

2009-04-27 11:17:51

网络管理子网划分

2009-10-23 17:51:51

Oracle用户密码

2010-09-17 14:04:14

JVM内存设置

2021-04-08 05:58:45

Excel数据技巧

2024-09-09 16:50:21

2019-07-09 08:23:07

数据安全旅游网络安全

2019-12-30 16:20:43

微信视频移动应用

2009-09-15 16:26:46

Linq排序
点赞
收藏

51CTO技术栈公众号