Sybase ASE Entity Framework - 将记录更新到数据库时出错 - “'('.\n”附近的语法不正确

发布于 2024-11-28 08:10:39 字数 697 浏览 1 评论 0原文

我正在尝试简单地更新现有记录。我收到错误 - '('附近的语法不正确。\n

Entities db = new Entities();

   try
    {

           var existingObj = new OBJETE
            {
                OB_ID_MR = 348,
                OB_ID_JE = 1156,
                OB_IS_NT = false,
                OB_ID_MS = 88,
                OB_POSITIONABS = "12,12,12,12",
                OB_ORDRE = 1,
                OB_UPDATEDATE = DateTime.Now
            };
            db.OBJETEs.Attach(existingObj);
            db.ObjectStateManager.ChangeObjectState(existingObj, System.Data.EntityState.Modified); 
            db.SaveChanges();

如果我尝试更新“not null”列,那么我可以更新此表中的记录。但是当我尝试更新时如果可以为空值,那么我会一直收到此错误,请提出建议。

I am trying to simple update and existing record. And I am getting the error - incorrect syntax near '('.\n

Entities db = new Entities();

   try
    {

           var existingObj = new OBJETE
            {
                OB_ID_MR = 348,
                OB_ID_JE = 1156,
                OB_IS_NT = false,
                OB_ID_MS = 88,
                OB_POSITIONABS = "12,12,12,12",
                OB_ORDRE = 1,
                OB_UPDATEDATE = DateTime.Now
            };
            db.OBJETEs.Attach(existingObj);
            db.ObjectStateManager.ChangeObjectState(existingObj, System.Data.EntityState.Modified); 
            db.SaveChanges();

If I try to update "not null" columns then I can update the records in this table. But when I try to update nullable values then I am getting this error consistently. Please advice.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

凉栀 2024-12-05 08:10:39

找到了!我的表没有主键。实体框架添加一些附加标签来禁用此类表的更新。

因此,要么向表添加主键,要么如果这不是像我这样的选项,解决方法是在文本模式下打开 edmx 文件,并删除标签的条目 - “DefiningQuery”及其所有内容有问题的表。另外我们需要改变 =>该表的 store:Schema="dbo" 到 Schema="dbo"。这应该可以解决问题。

Found it! My Table did not have a Primary Key. Entity Framework add some addition tag to disable update of such tables.

So either you add a primary key to the table or if that is not an option like in my case the work around is to open the edmx file in Text mode, and remove the entry for the tag - "DefiningQuery" and all its contents for the Table in question. Additionally we need to change => store:Schema="dbo" to Schema="dbo" for that Table. This should fix the issue.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文