IQueryable.xml 5.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Type Name="IQueryable" FullName="System.Linq.IQueryable">
  3. <TypeSignature Language="C#" Value="public interface IQueryable : System.Collections.IEnumerable" />
  4. <TypeSignature Language="ILAsm" Value=".class public interface auto ansi abstract IQueryable implements class System.Collections.IEnumerable" />
  5. <AssemblyInfo>
  6. <AssemblyName>System.Core</AssemblyName>
  7. <AssemblyVersion>3.5.0.0</AssemblyVersion>
  8. <AssemblyVersion>4.0.0.0</AssemblyVersion>
  9. </AssemblyInfo>
  10. <Interfaces>
  11. <Interface>
  12. <InterfaceName>System.Collections.IEnumerable</InterfaceName>
  13. </Interface>
  14. </Interfaces>
  15. <Docs>
  16. <remarks>
  17. <attribution license="cc4" from="Microsoft" modified="false" />
  18. <para>The <see cref="T:System.Linq.IQueryable" /> interface is intended for implementation by query providers. It is only supposed to be implemented by providers that also implement <see cref="T:System.Linq.IQueryable`1" />. If the provider does not also implement <see cref="T:System.Linq.IQueryable`1" />, the standard query operators cannot be used on the provider's data source.</para>
  19. <para>The <see cref="T:System.Linq.IQueryable" /> interface inherits the <see cref="T:System.Collections.IEnumerable" /> interface so that if it represents a query, the results of that query can be enumerated. Enumeration causes the expression tree associated with an <see cref="T:System.Linq.IQueryable" /> object to be executed. The definition of "executing an expression tree" is specific to a query provider. For example, it may involve translating the expression tree to an appropriate query language for the underlying data source. Queries that do not return enumerable results are executed when the <see cref="M:System.Linq.IQueryProvider.Execute(System.Linq.Expressions.Expression)" /> method is called.</para>
  20. <para>For more information about how to create your own LINQ provider, see <see cref="http://go.microsoft.com/fwlink/?LinkID=112370">LINQ: Building an IQueryable Provider</see> on MSDN Blogs.</para>
  21. </remarks>
  22. <summary>
  23. <attribution license="cc4" from="Microsoft" modified="false" />
  24. <para>Provides functionality to evaluate queries against a specific data source wherein the type of the data is not specified.</para>
  25. </summary>
  26. </Docs>
  27. <Members>
  28. <Member MemberName="ElementType">
  29. <MemberSignature Language="C#" Value="public Type ElementType { get; }" />
  30. <MemberSignature Language="ILAsm" Value=".property instance class System.Type ElementType" />
  31. <MemberType>Property</MemberType>
  32. <AssemblyInfo>
  33. <AssemblyVersion>3.5.0.0</AssemblyVersion>
  34. <AssemblyVersion>4.0.0.0</AssemblyVersion>
  35. </AssemblyInfo>
  36. <ReturnValue>
  37. <ReturnType>System.Type</ReturnType>
  38. </ReturnValue>
  39. <Docs>
  40. <value>To be added.</value>
  41. <remarks>
  42. <attribution license="cc4" from="Microsoft" modified="false" />
  43. <para>The <see cref="P:System.Linq.IQueryable.ElementType" /> property represents the "T" in IQueryable&lt;T&gt; or IQueryable(Of T).</para>
  44. </remarks>
  45. <summary>
  46. <attribution license="cc4" from="Microsoft" modified="false" />
  47. <para>Gets the type of the element(s) that are returned when the expression tree associated with this instance of <see cref="T:System.Linq.IQueryable" /> is executed.</para>
  48. </summary>
  49. </Docs>
  50. </Member>
  51. <Member MemberName="Expression">
  52. <MemberSignature Language="C#" Value="public System.Linq.Expressions.Expression Expression { get; }" />
  53. <MemberSignature Language="ILAsm" Value=".property instance class System.Linq.Expressions.Expression Expression" />
  54. <MemberType>Property</MemberType>
  55. <AssemblyInfo>
  56. <AssemblyVersion>3.5.0.0</AssemblyVersion>
  57. <AssemblyVersion>4.0.0.0</AssemblyVersion>
  58. </AssemblyInfo>
  59. <ReturnValue>
  60. <ReturnType>System.Linq.Expressions.Expression</ReturnType>
  61. </ReturnValue>
  62. <Docs>
  63. <value>To be added.</value>
  64. <remarks>
  65. <attribution license="cc4" from="Microsoft" modified="false" />
  66. <para>If an instance of <see cref="T:System.Linq.IQueryable" /> represents a vbteclinq query against a data source, the associated expression tree represents that query.</para>
  67. </remarks>
  68. <summary>
  69. <attribution license="cc4" from="Microsoft" modified="false" />
  70. <para>Gets the expression tree that is associated with the instance of <see cref="T:System.Linq.IQueryable" />.</para>
  71. </summary>
  72. </Docs>
  73. </Member>
  74. <Member MemberName="Provider">
  75. <MemberSignature Language="C#" Value="public System.Linq.IQueryProvider Provider { get; }" />
  76. <MemberSignature Language="ILAsm" Value=".property instance class System.Linq.IQueryProvider Provider" />
  77. <MemberType>Property</MemberType>
  78. <AssemblyInfo>
  79. <AssemblyVersion>3.5.0.0</AssemblyVersion>
  80. <AssemblyVersion>4.0.0.0</AssemblyVersion>
  81. </AssemblyInfo>
  82. <ReturnValue>
  83. <ReturnType>System.Linq.IQueryProvider</ReturnType>
  84. </ReturnValue>
  85. <Docs>
  86. <value>To be added.</value>
  87. <remarks>
  88. <attribution license="cc4" from="Microsoft" modified="false" />
  89. <para>If an instance of <see cref="T:System.Linq.IQueryable" /> represents a vbteclinq query against a data source, the associated query provider is the provider that created the <see cref="T:System.Linq.IQueryable" /> instance.</para>
  90. </remarks>
  91. <summary>
  92. <attribution license="cc4" from="Microsoft" modified="false" />
  93. <para>Gets the query provider that is associated with this data source.</para>
  94. </summary>
  95. </Docs>
  96. </Member>
  97. </Members>
  98. </Type>