如何只声明System.Collections.Generic.IEnumerable类型的变量?
如果我尝试:
var selectedData="";
type selectedData=null;
我收到错误。
答案 0 :(得分:0)
只需
System.Collections.Generic.IEnumerable selectedData;
您可以稍后在代码中使用它。
答案 1 :(得分:0)
System.Collections.Generic.IEnumerable<dynamic>
因为db.Query
的结果是动态行。 C#编译器在编译时不知道查询将返回的类型。