C# 中的转换错误
我收到以下错误
System.InvalidCastException:无法将“System.Int64”类型的对象转换为“System.String”类型。
在代码中:
public static List<Category> getPopularCategories() {
clsCityPageDataContext cox = new clsCityPageDataContext();
var cats = from cat in cox.Categories select cat;
return cats.ToList<Category>().GetRange(0,10);
}
I'm getting the following error
System.InvalidCastException: Unable to cast object of type 'System.Int64' to type 'System.String'.
in the code:
public static List<Category> getPopularCategories() {
clsCityPageDataContext cox = new clsCityPageDataContext();
var cats = from cat in cox.Categories select cat;
return cats.ToList<Category>().GetRange(0,10);
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
问题是:
替换为:
The problem is:
replace with: