访问为 ObjectDataSource 实现 SelectMethod 的对象 (ASP.NET)

发布于 2024-10-01 02:19:24 字数 478 浏览 4 评论 0原文

是否可以访问 ObjectDataSource 用于检索记录的对象?例如,

<asp:ObjectDataSource ID="MyDS" runat="server" 
    SelectMethod="getUsers" 
    TypeName="DataSources.UserDS"
    SelectCountMethod = "getUserNum"/>... </asp:ObjectDataSource>

UserDS 类具有返回 DataTablegetUsers 和返回 intgetUserNum ,这部分按预期工作。但我想知道是否可以以某种方式访问​​ UserDS 的实例(不是底层的 DataTable)? 提前致谢。

Is it possible to access an object that is used by ObjectDataSource to retrieve records? For example,

<asp:ObjectDataSource ID="MyDS" runat="server" 
    SelectMethod="getUsers" 
    TypeName="DataSources.UserDS"
    SelectCountMethod = "getUserNum"/>... </asp:ObjectDataSource>

UserDS class has getUsers that returns DataTable and getUserNum that returns int, this part works as it's supposed. But I wonder if can access the instance of UserDS somehow (not underlying DataTable)?
Thanks in advance.

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

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

发布评论

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

评论(1

一杯敬自由 2024-10-08 02:19:24

该对象实例在 ODS 创建事件中可用。

protected void ObjectDataSource1_ObjectCreated(object sender, ObjectDataSourceEventArgs e)
{
   object objectInstance = e.ObjectInstance;
}

The object instance is available in the ODS created event.

protected void ObjectDataSource1_ObjectCreated(object sender, ObjectDataSourceEventArgs e)
{
   object objectInstance = e.ObjectInstance;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文