无法转换“CompaniesDataTable”类型的对象;输入“CompaniesDataTable”
有没有人遇到过如下错误:
Unable to cast object of type 'CompaniesDataTable' to type 'CompaniesDataTable'.
这是导致错误的代码:
protected void ObjectDataSource_Companies_Selected(object sender, ObjectDataSourceStatusEventArgs e)
{
int x = ((Adala.CompaniesDataTable)(e.ReturnValue)).Count;
}
我想做的是获取 objectdatasource 返回的 gridview 的总行数,但它给了我这个错误。
为什么它不能将类型转换为相同类型?
Has anyone come across an error like the following:
Unable to cast object of type 'CompaniesDataTable' to type 'CompaniesDataTable'.
Here is the code that is causing the error:
protected void ObjectDataSource_Companies_Selected(object sender, ObjectDataSourceStatusEventArgs e)
{
int x = ((Adala.CompaniesDataTable)(e.ReturnValue)).Count;
}
What I'm trying to do is to get the total number of rows of gridview returned by the objectdatasource but it gives me that error.
Why is it not able to cast type to the same type?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好的,谢谢 Shaji 没有回答,
无论如何,我找到了解决我的问题的方法。
我创建了一个 BLL 类并实例化它,而不是直接实例化数据集类。
在 BLL 内部我创建了这个方法
,然后我可以使用属性 e.OutputParameters["rowsCount"].ToString();
在方法 Objectdatasource.Selected 事件中
OK Thanks Shaji for not answering,
Any way I found a solution for my problem.
I created a BLL Class and instantiated it instead of Direct Instantiating Dataset Classes.
inside BLL i created this method
then i can use the property e.OutputParameters["rowsCount"].ToString();
in the Method Objectdatasource.Selected event