eaglet

本博专注于基于微软技术的搜索相关技术
随笔 - 189, 文章 - 0, 评论 - 3725, 阅读 - 147万
  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理
< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5

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

Posted on   eaglet  阅读(1349)  评论(1编辑  收藏  举报
Linq to SQL 插入数据时的一个问题

今天用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,
)
复制代码

问题解决。

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





编辑推荐:
· 如何编写易于单元测试的代码
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
阅读排行:
· 周边上新:园子的第一款马克杯温暖上架
· Open-Sora 2.0 重磅开源!
· .NET周刊【3月第1期 2025-03-02】
· 分享 3 个 .NET 开源的文件压缩处理库,助力快速实现文件压缩解压功能!
· [AI/GPT/综述] AI Agent的设计模式综述
点击右上角即可分享
微信分享提示