ObjectDataSource 插入业务对象失败

发布于 2024-12-12 02:50:03 字数 482 浏览 3 评论 0原文

基本上是一个使用业务对象(属性 DataObjectTypeName)的 ObjectDataSource,使用在 FormView 中使用的 Linq to Sql DataContext。

我的主键是一个整数身份,一个 ID。

当我在插入按钮上将 CausesValidation 属性设置为 true 时,它​​实际上什么也不做。它甚至没有到达数据层的Insert方法。 但是,如果我将其设置为 false,它将进入 Insert 方法,但我的业务对象参数的属性中没有值。

我在 Update 方法中也遇到了类似的问题,结果发现我忘记了 ID 参数。将其指定为 UpdateParameter 解决了这个问题。这似乎是 Linq To SQL 的问题(如果我错了,请纠正我)。

但是现在 Insert 方法呢?我在这里缺少什么? 我真的不想删除 DataObjectTypeName 因为表单有大约 40 个字段,这将是所有数据方法的 40 个参数...

帮助?

Basically an ObjectDataSource using Business Objects (Property DataObjectTypeName) using a Linq to Sql DataContext being used in a FormView.

My primary key is an integer identity, an ID.

When I set the CausesValidation property to true on the insert button it literaly does nothing. It doesn't even get to the Insert method of the data layer.
However, if I set it to false, it gets to the Insert method but my business object parameter has no values in its properties.

I had a similar problem with the Update method, and it turned out that I had forgotten about the ID parameter. Specifying it as an UpdateParameter solved it. This seemed to be an issue with the Linq To SQL (correct me if I'm wrong).

But now what about the Insert method? What am I missing here?
I really don't want to remove the DataObjectTypeName because the Form has like 40 fields, which would be 40 parameters to all the data methods...

Help?

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

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

发布评论

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

评论(1

岁月无声 2024-12-19 02:50:03

在某些时候,页面的 Load 事件上有一个 DataBind() 方法调用,并且我使用我的代码作为自定义控件。无论如何...评论了对 DataBind 方法的调用,并且它起作用了。

At some point, there was a DataBind() method call on the page's Load event, and I was using my code as a custom control. Anyway... commented the call to the DataBind method, and it worked.

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