当前位置:  数据库>sqlserver

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

    来源: 互联网  发布时间:2014-09-05

    本文导语:  代码如下: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), ) 插入数据的代码 RSSFeedRig...

代码如下:

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

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

    
 
 
 
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • LINQ to SQL:处理char(1)字段的方式会引起全表扫描问题
  • Linq To SQL和Linq To Object的批量操作InsertAllOnSubmit介绍
  • JavaScript版的LinQ $linq
  • LINQ的Java移植版本 linq4j
  • 使用linq to xml修改app.config示例(linq读取xml)
  • JavaScript版的LinQ linq.js
  • JavaScript 的 LINQ 引擎 Fromjs
  • LINQ对象转化工具 JSLINQ
  • Linq实现的简单查询的例子
  • 用JavaScript实现的LINQ JSINQ
  • Java 8 的 LinQ 风格查询 Jinq
  • c#使用linq技术创建xml文件的小例子
  • 通过LinQ查询字符出现次数的实例方法
  • C# Linq读取XML文件的实例
  • C#读写xml配置文件(LINQ操作实例)
  • 使用linq读取分隔符文本文件
  • sqlserver 用户权限管理,LINQ去除它的重复菜单项
  • c#中Linq to Sql 增删除的实例
  • C# LINQ to XML应用介绍
  • C#中Linq查询基本操作使用实例
  • linq语法基础使用示例
  • 为何Linq的Distinct实在是不给力


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3