使用 EF 将行插入 SQL Server WCF 数据服务 .Net 4 框架

发布于 2024-12-03 06:27:34 字数 350 浏览 2 评论 0 原文

我最近使用实体框架在企业环境(内联网)内部署了托管在 IIS 6 上的 .Net 4 WCF 数据服务。我使用 OData 访问该服务,并已成功从 SQL Server 2005 上托管的表中检索数据。

问题是我无法插入新行。到目前为止我所做的是将实体权限设置为 ALL -> IE。

config.SetEntitySetAccessRule("*", EntitySetRights.All);

我在 IIS 上使用集成安全性。当我使用 jQuery 执行 POST 时,它返回 500 错误代码。我能够将行插入到我的开发环境中的本地数据库中。

谢谢

I recently deployed a .Net 4 WCF Data Service hosted on IIS 6, within a corporate environment (intranet), using Entity Framework. I access the service using OData and have been successful retrieving data from tables hosted on SQL Server 2005.

The issue is that I am unable to insert new rows. What I've done so far is to set entity rights to ALL -> ie.

config.SetEntitySetAccessRule("*", EntitySetRights.All);

I'm using integrated security on IIS. When I do a POST using jQuery, it returns 500 error code. I'm able to insert rows to a local database in my development environment.

Thanks

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

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

发布评论

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

评论(1

ζ澈沫 2024-12-10 06:27:34

我想通了。我收到错误

“无法更新 EntitySet,因为它具有 DefiningQuery,并且该元素中不存在支持当前 > 操作的 > 元素。”

这是因为该表虽然具有标识字段,但未将其指定为主键。设置主键,一切顺利。

修复 System.Data.UpdateException – DefiningQuery 并且没有错误 有所帮助。

谢谢

I figured it out. I was receiving error

"Unable to update the EntitySet because it has a DefiningQuery and no >element exists in the element to support the current >operation."

This was caused because the table, although having an identity field, didn't specify it as a Primary Key. Set the Primary key and all is well.

Fixing the System.Data.UpdateException – DefiningQuery and no Error helped.

Thanks

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