DataServiceQuery<TElement>.Execute 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
执行查询,并以实现 IEnumerable
的集合的形式返回结果。
public:
System::Collections::Generic::IEnumerable<TElement> ^ Execute();
public System.Collections.Generic.IEnumerable<TElement> Execute ();
override this.Execute : unit -> seq<'Element>
Public Function Execute () As IEnumerable(Of TElement)
返回
IEnumerable<TElement>
IEnumerable<T>,其中 T
表示查询结果的类型。
例外
当数据服务返回“HTTP 404: 未找到资源”错误时。
注解
循环访问返回的集合时,如果在输入流中遇到无法反序列化为 实例的对象 T
,则会 NotSupportedException 引发 。