访问为 ObjectDataSource 实现 SelectMethod 的对象 (ASP.NET)
是否可以访问 ObjectDataSource 用于检索记录的对象?例如,
<asp:ObjectDataSource ID="MyDS" runat="server"
SelectMethod="getUsers"
TypeName="DataSources.UserDS"
SelectCountMethod = "getUserNum"/>... </asp:ObjectDataSource>
UserDS
类具有返回 DataTable
的 getUsers
和返回 int
的 getUserNum
,这部分按预期工作。但我想知道是否可以以某种方式访问 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
该对象实例在 ODS 创建事件中可用。
The object instance is available in the ODS created event.