System.Linq.Queryable.xml 123 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <doc>
  3. <assembly>
  4. <name>System.Linq.Queryable</name>
  5. </assembly>
  6. <members>
  7. <member name="T:System.Linq.EnumerableExecutor">
  8. <summary>Represents an expression tree and provides functionality to execute the expression tree after rewriting it.</summary>
  9. </member>
  10. <member name="M:System.Linq.EnumerableExecutor.#ctor">
  11. <summary>Initializes a new instance of the <see cref="T:System.Linq.EnumerableExecutor" /> class.</summary>
  12. </member>
  13. <member name="T:System.Linq.EnumerableExecutor`1">
  14. <summary>Represents an expression tree and provides functionality to execute the expression tree after rewriting it.</summary>
  15. <typeparam name="T">The data type of the value that results from executing the expression tree.</typeparam>
  16. </member>
  17. <member name="M:System.Linq.EnumerableExecutor`1.#ctor(System.Linq.Expressions.Expression)">
  18. <summary>Initializes a new instance of the <see cref="T:System.Linq.EnumerableExecutor`1" /> class.</summary>
  19. <param name="expression">An expression tree to associate with the new instance.</param>
  20. </member>
  21. <member name="T:System.Linq.EnumerableQuery">
  22. <summary>Represents an <see cref="T:System.Collections.IEnumerable" /> as an <see cref="T:System.Linq.EnumerableQuery" /> data source. </summary>
  23. </member>
  24. <member name="M:System.Linq.EnumerableQuery.#ctor">
  25. <summary>Initializes a new instance of the <see cref="T:System.Linq.EnumerableQuery" /> class.</summary>
  26. </member>
  27. <member name="T:System.Linq.EnumerableQuery`1">
  28. <summary>Represents an <see cref="T:System.Collections.Generic.IEnumerable`1" /> collection as an <see cref="T:System.Linq.IQueryable`1" /> data source.</summary>
  29. <typeparam name="T">The type of the data in the collection.</typeparam>
  30. </member>
  31. <member name="M:System.Linq.EnumerableQuery`1.#ctor(System.Collections.Generic.IEnumerable{`0})">
  32. <summary>Initializes a new instance of the <see cref="T:System.Linq.EnumerableQuery`1" /> class and associates it with an <see cref="T:System.Collections.Generic.IEnumerable`1" /> collection.</summary>
  33. <param name="enumerable">A collection to associate with the new instance.</param>
  34. </member>
  35. <member name="M:System.Linq.EnumerableQuery`1.#ctor(System.Linq.Expressions.Expression)">
  36. <summary>Initializes a new instance of the <see cref="T:System.Linq.EnumerableQuery`1" /> class and associates the instance with an expression tree.</summary>
  37. <param name="expression">An expression tree to associate with the new instance.</param>
  38. </member>
  39. <member name="M:System.Linq.EnumerableQuery`1.System#Collections#Generic#IEnumerable{T}#GetEnumerator">
  40. <summary>Returns an enumerator that can iterate through the associated <see cref="T:System.Collections.Generic.IEnumerable`1" /> collection, or, if it is null, through the collection that results from rewriting the associated expression tree as a query on an <see cref="T:System.Collections.Generic.IEnumerable`1" /> data source and executing it.</summary>
  41. <returns>An enumerator that can be used to iterate through the associated data source.</returns>
  42. </member>
  43. <member name="M:System.Linq.EnumerableQuery`1.System#Collections#IEnumerable#GetEnumerator">
  44. <summary>Returns an enumerator that can iterate through the associated <see cref="T:System.Collections.Generic.IEnumerable`1" /> collection, or, if it is null, through the collection that results from rewriting the associated expression tree as a query on an <see cref="T:System.Collections.Generic.IEnumerable`1" /> data source and executing it.</summary>
  45. <returns>An enumerator that can be used to iterate through the associated data source.</returns>
  46. </member>
  47. <member name="P:System.Linq.EnumerableQuery`1.System#Linq#IQueryable#ElementType">
  48. <summary>Gets the type of the data in the collection that this instance represents.</summary>
  49. <returns>The type of the data in the collection that this instance represents.</returns>
  50. </member>
  51. <member name="P:System.Linq.EnumerableQuery`1.System#Linq#IQueryable#Expression">
  52. <summary>Gets the expression tree that is associated with or that represents this instance.</summary>
  53. <returns>The expression tree that is associated with or that represents this instance.</returns>
  54. </member>
  55. <member name="P:System.Linq.EnumerableQuery`1.System#Linq#IQueryable#Provider">
  56. <summary>Gets the query provider that is associated with this instance.</summary>
  57. <returns>The query provider that is associated with this instance.</returns>
  58. </member>
  59. <member name="M:System.Linq.EnumerableQuery`1.System#Linq#IQueryProvider#CreateQuery``1(System.Linq.Expressions.Expression)">
  60. <summary>Constructs a new <see cref="T:System.Linq.EnumerableQuery`1" /> object and associates it with a specified expression tree that represents an <see cref="T:System.Linq.IQueryable`1" /> collection of data.</summary>
  61. <returns>An EnumerableQuery object that is associated with <paramref name="expression" />.</returns>
  62. <param name="expression">An expression tree to execute.</param>
  63. <typeparam name="S">The type of the data in the collection that <paramref name="expression" /> represents.</typeparam>
  64. </member>
  65. <member name="M:System.Linq.EnumerableQuery`1.System#Linq#IQueryProvider#CreateQuery(System.Linq.Expressions.Expression)">
  66. <summary>Constructs a new <see cref="T:System.Linq.EnumerableQuery`1" /> object and associates it with a specified expression tree that represents an <see cref="T:System.Linq.IQueryable" /> collection of data.</summary>
  67. <returns>An <see cref="T:System.Linq.EnumerableQuery`1" /> object that is associated with <paramref name="expression" />.</returns>
  68. <param name="expression">An expression tree that represents an <see cref="T:System.Linq.IQueryable" /> collection of data.</param>
  69. </member>
  70. <member name="M:System.Linq.EnumerableQuery`1.System#Linq#IQueryProvider#Execute``1(System.Linq.Expressions.Expression)">
  71. <summary>Executes an expression after rewriting it to call <see cref="T:System.Linq.Enumerable" /> methods instead of <see cref="T:System.Linq.Queryable" /> methods on any enumerable data sources that cannot be queried by <see cref="T:System.Linq.Queryable" /> methods.</summary>
  72. <returns>The value that results from executing <paramref name="expression" />.</returns>
  73. <param name="expression">An expression tree to execute.</param>
  74. <typeparam name="S">The type of the data in the collection that <paramref name="expression" /> represents.</typeparam>
  75. </member>
  76. <member name="M:System.Linq.EnumerableQuery`1.System#Linq#IQueryProvider#Execute(System.Linq.Expressions.Expression)">
  77. <summary>Executes an expression after rewriting it to call <see cref="T:System.Linq.Enumerable" /> methods instead of <see cref="T:System.Linq.Queryable" /> methods on any enumerable data sources that cannot be queried by <see cref="T:System.Linq.Queryable" /> methods.</summary>
  78. <returns>The value that results from executing <paramref name="expression" />.</returns>
  79. <param name="expression">An expression tree to execute.</param>
  80. </member>
  81. <member name="M:System.Linq.EnumerableQuery`1.ToString">
  82. <summary>Returns a textual representation of the enumerable collection or, if it is null, of the expression tree that is associated with this instance.</summary>
  83. <returns>A textual representation of the enumerable collection or, if it is null, of the expression tree that is associated with this instance.</returns>
  84. </member>
  85. <member name="T:System.Linq.Queryable">
  86. <summary>Provides a set of static (Shared in Visual Basic) methods for querying data structures that implement <see cref="T:System.Linq.IQueryable`1" />.</summary>
  87. </member>
  88. <member name="M:System.Linq.Queryable.Aggregate``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,``0,``0}})">
  89. <summary>Applies an accumulator function over a sequence.</summary>
  90. <returns>The final accumulator value.</returns>
  91. <param name="source">A sequence to aggregate over.</param>
  92. <param name="func">An accumulator function to apply to each element.</param>
  93. <typeparam name="TSource">The type of the elements of <paramref name="source" />.</typeparam>
  94. <exception cref="T:System.ArgumentNullException">
  95. <paramref name="source" /> or <paramref name="func" /> is null.</exception>
  96. <exception cref="T:System.InvalidOperationException">
  97. <paramref name="source" /> contains no elements.</exception>
  98. </member>
  99. <member name="M:System.Linq.Queryable.Aggregate``2(System.Linq.IQueryable{``0},``1,System.Linq.Expressions.Expression{System.Func{``1,``0,``1}})">
  100. <summary>Applies an accumulator function over a sequence. The specified seed value is used as the initial accumulator value.</summary>
  101. <returns>The final accumulator value.</returns>
  102. <param name="source">A sequence to aggregate over.</param>
  103. <param name="seed">The initial accumulator value.</param>
  104. <param name="func">An accumulator function to invoke on each element.</param>
  105. <typeparam name="TSource">The type of the elements of <paramref name="source" />.</typeparam>
  106. <typeparam name="TAccumulate">The type of the accumulator value.</typeparam>
  107. <exception cref="T:System.ArgumentNullException">
  108. <paramref name="source" /> or <paramref name="func" /> is null.</exception>
  109. </member>
  110. <member name="M:System.Linq.Queryable.Aggregate``3(System.Linq.IQueryable{``0},``1,System.Linq.Expressions.Expression{System.Func{``1,``0,``1}},System.Linq.Expressions.Expression{System.Func{``1,``2}})">
  111. <summary>Applies an accumulator function over a sequence. The specified seed value is used as the initial accumulator value, and the specified function is used to select the result value.</summary>
  112. <returns>The transformed final accumulator value.</returns>
  113. <param name="source">A sequence to aggregate over.</param>
  114. <param name="seed">The initial accumulator value.</param>
  115. <param name="func">An accumulator function to invoke on each element.</param>
  116. <param name="selector">A function to transform the final accumulator value into the result value.</param>
  117. <typeparam name="TSource">The type of the elements of <paramref name="source" />.</typeparam>
  118. <typeparam name="TAccumulate">The type of the accumulator value.</typeparam>
  119. <typeparam name="TResult">The type of the resulting value.</typeparam>
  120. <exception cref="T:System.ArgumentNullException">
  121. <paramref name="source" /> or <paramref name="func" /> or <paramref name="selector" /> is null.</exception>
  122. </member>
  123. <member name="M:System.Linq.Queryable.All``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}})">
  124. <summary>Determines whether all the elements of a sequence satisfy a condition.</summary>
  125. <returns>true if every element of the source sequence passes the test in the specified predicate, or if the sequence is empty; otherwise, false.</returns>
  126. <param name="source">A sequence whose elements to test for a condition.</param>
  127. <param name="predicate">A function to test each element for a condition.</param>
  128. <typeparam name="TSource">The type of the elements of <paramref name="source" />.</typeparam>
  129. <exception cref="T:System.ArgumentNullException">
  130. <paramref name="source" /> or <paramref name="predicate" /> is null.</exception>
  131. </member>
  132. <member name="M:System.Linq.Queryable.Any``1(System.Linq.IQueryable{``0})">
  133. <summary>Determines whether a sequence contains any elements.</summary>
  134. <returns>true if the source sequence contains any elements; otherwise, false.</returns>
  135. <param name="source">A sequence to check for being empty.</param>
  136. <typeparam name="TSource">The type of the elements of <paramref name="source" />.</typeparam>
  137. <exception cref="T:System.ArgumentNullException">
  138. <paramref name="source" /> is null.</exception>
  139. </member>
  140. <member name="M:System.Linq.Queryable.Any``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}})">
  141. <summary>Determines whether any element of a sequence satisfies a condition.</summary>
  142. <returns>true if any elements in the source sequence pass the test in the specified predicate; otherwise, false.</returns>
  143. <param name="source">A sequence whose elements to test for a condition.</param>
  144. <param name="predicate">A function to test each element for a condition.</param>
  145. <typeparam name="TSource">The type of the elements of <paramref name="source" />.</typeparam>
  146. <exception cref="T:System.ArgumentNullException">
  147. <paramref name="source" /> or <paramref name="predicate" /> is null.</exception>
  148. </member>
  149. <member name="M:System.Linq.Queryable.AsQueryable``1(System.Collections.Generic.IEnumerable{``0})">
  150. <summary>Converts a generic <see cref="T:System.Collections.Generic.IEnumerable`1" /> to a generic <see cref="T:System.Linq.IQueryable`1" />.</summary>
  151. <returns>An <see cref="T:System.Linq.IQueryable`1" /> that represents the input sequence.</returns>
  152. <param name="source">A sequence to convert.</param>
  153. <typeparam name="TElement">The type of the elements of <paramref name="source" />.</typeparam>
  154. <exception cref="T:System.ArgumentNullException">
  155. <paramref name="source" /> is null.</exception>
  156. </member>
  157. <member name="M:System.Linq.Queryable.AsQueryable(System.Collections.IEnumerable)">
  158. <summary>Converts an <see cref="T:System.Collections.IEnumerable" /> to an <see cref="T:System.Linq.IQueryable" />.</summary>
  159. <returns>An <see cref="T:System.Linq.IQueryable" /> that represents the input sequence.</returns>
  160. <param name="source">A sequence to convert.</param>
  161. <exception cref="T:System.ArgumentException">
  162. <paramref name="source" /> does not implement <see cref="T:System.Collections.Generic.IEnumerable`1" /> for some <paramref name="T" />.</exception>
  163. <exception cref="T:System.ArgumentNullException">
  164. <paramref name="source" /> is null.</exception>
  165. </member>
  166. <member name="M:System.Linq.Queryable.Average(System.Linq.IQueryable{System.Decimal})">
  167. <summary>Computes the average of a sequence of <see cref="T:System.Decimal" /> values.</summary>
  168. <returns>The average of the sequence of values.</returns>
  169. <param name="source">A sequence of <see cref="T:System.Decimal" /> values to calculate the average of.</param>
  170. <exception cref="T:System.ArgumentNullException">
  171. <paramref name="source" /> is null.</exception>
  172. <exception cref="T:System.InvalidOperationException">
  173. <paramref name="source" /> contains no elements.</exception>
  174. </member>
  175. <member name="M:System.Linq.Queryable.Average(System.Linq.IQueryable{System.Double})">
  176. <summary>Computes the average of a sequence of <see cref="T:System.Double" /> values.</summary>
  177. <returns>The average of the sequence of values.</returns>
  178. <param name="source">A sequence of <see cref="T:System.Double" /> values to calculate the average of.</param>
  179. <exception cref="T:System.ArgumentNullException">
  180. <paramref name="source" /> is null.</exception>
  181. <exception cref="T:System.InvalidOperationException">
  182. <paramref name="source" /> contains no elements.</exception>
  183. </member>
  184. <member name="M:System.Linq.Queryable.Average(System.Linq.IQueryable{System.Int32})">
  185. <summary>Computes the average of a sequence of <see cref="T:System.Int32" /> values.</summary>
  186. <returns>The average of the sequence of values.</returns>
  187. <param name="source">A sequence of <see cref="T:System.Int32" /> values to calculate the average of.</param>
  188. <exception cref="T:System.ArgumentNullException">
  189. <paramref name="source" /> is null.</exception>
  190. <exception cref="T:System.InvalidOperationException">
  191. <paramref name="source" /> contains no elements.</exception>
  192. </member>
  193. <member name="M:System.Linq.Queryable.Average(System.Linq.IQueryable{System.Int64})">
  194. <summary>Computes the average of a sequence of <see cref="T:System.Int64" /> values.</summary>
  195. <returns>The average of the sequence of values.</returns>
  196. <param name="source">A sequence of <see cref="T:System.Int64" /> values to calculate the average of.</param>
  197. <exception cref="T:System.ArgumentNullException">
  198. <paramref name="source" /> is null.</exception>
  199. <exception cref="T:System.InvalidOperationException">
  200. <paramref name="source" /> contains no elements.</exception>
  201. </member>
  202. <member name="M:System.Linq.Queryable.Average(System.Linq.IQueryable{System.Nullable{System.Decimal}})">
  203. <summary>Computes the average of a sequence of nullable <see cref="T:System.Decimal" /> values.</summary>
  204. <returns>The average of the sequence of values, or null if the source sequence is empty or contains only null values.</returns>
  205. <param name="source">A sequence of nullable <see cref="T:System.Decimal" /> values to calculate the average of.</param>
  206. <exception cref="T:System.ArgumentNullException">
  207. <paramref name="source" /> is null.</exception>
  208. </member>
  209. <member name="M:System.Linq.Queryable.Average(System.Linq.IQueryable{System.Nullable{System.Double}})">
  210. <summary>Computes the average of a sequence of nullable <see cref="T:System.Double" /> values.</summary>
  211. <returns>The average of the sequence of values, or null if the source sequence is empty or contains only null values.</returns>
  212. <param name="source">A sequence of nullable <see cref="T:System.Double" /> values to calculate the average of.</param>
  213. <exception cref="T:System.ArgumentNullException">
  214. <paramref name="source" /> is null.</exception>
  215. </member>
  216. <member name="M:System.Linq.Queryable.Average(System.Linq.IQueryable{System.Nullable{System.Int32}})">
  217. <summary>Computes the average of a sequence of nullable <see cref="T:System.Int32" /> values.</summary>
  218. <returns>The average of the sequence of values, or null if the source sequence is empty or contains only null values.</returns>
  219. <param name="source">A sequence of nullable <see cref="T:System.Int32" /> values to calculate the average of.</param>
  220. <exception cref="T:System.ArgumentNullException">
  221. <paramref name="source" /> is null.</exception>
  222. </member>
  223. <member name="M:System.Linq.Queryable.Average(System.Linq.IQueryable{System.Nullable{System.Int64}})">
  224. <summary>Computes the average of a sequence of nullable <see cref="T:System.Int64" /> values.</summary>
  225. <returns>The average of the sequence of values, or null if the source sequence is empty or contains only null values.</returns>
  226. <param name="source">A sequence of nullable <see cref="T:System.Int64" /> values to calculate the average of.</param>
  227. <exception cref="T:System.ArgumentNullException">
  228. <paramref name="source" /> is null.</exception>
  229. </member>
  230. <member name="M:System.Linq.Queryable.Average(System.Linq.IQueryable{System.Nullable{System.Single}})">
  231. <summary>Computes the average of a sequence of nullable <see cref="T:System.Single" /> values.</summary>
  232. <returns>The average of the sequence of values, or null if the source sequence is empty or contains only null values.</returns>
  233. <param name="source">A sequence of nullable <see cref="T:System.Single" /> values to calculate the average of.</param>
  234. <exception cref="T:System.ArgumentNullException">
  235. <paramref name="source" /> is null.</exception>
  236. </member>
  237. <member name="M:System.Linq.Queryable.Average(System.Linq.IQueryable{System.Single})">
  238. <summary>Computes the average of a sequence of <see cref="T:System.Single" /> values.</summary>
  239. <returns>The average of the sequence of values.</returns>
  240. <param name="source">A sequence of <see cref="T:System.Single" /> values to calculate the average of.</param>
  241. <exception cref="T:System.ArgumentNullException">
  242. <paramref name="source" /> is null.</exception>
  243. <exception cref="T:System.InvalidOperationException">
  244. <paramref name="source" /> contains no elements.</exception>
  245. </member>
  246. <member name="M:System.Linq.Queryable.Average``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Decimal}})">
  247. <summary>Computes the average of a sequence of <see cref="T:System.Decimal" /> values that is obtained by invoking a projection function on each element of the input sequence.</summary>
  248. <returns>The average of the sequence of values.</returns>
  249. <param name="source">A sequence of values that are used to calculate an average.</param>
  250. <param name="selector">A projection function to apply to each element.</param>
  251. <typeparam name="TSource">The type of the elements of <paramref name="source" />.</typeparam>
  252. <exception cref="T:System.ArgumentNullException">
  253. <paramref name="source" /> or <paramref name="selector" /> is null.</exception>
  254. <exception cref="T:System.InvalidOperationException">
  255. <paramref name="source" /> contains no elements.</exception>
  256. </member>
  257. <member name="M:System.Linq.Queryable.Average``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Double}})">
  258. <summary>Computes the average of a sequence of <see cref="T:System.Double" /> values that is obtained by invoking a projection function on each element of the input sequence.</summary>
  259. <returns>The average of the sequence of values.</returns>
  260. <param name="source">A sequence of values to calculate the average of.</param>
  261. <param name="selector">A projection function to apply to each element.</param>
  262. <typeparam name="TSource">The type of the elements of <paramref name="source" />.</typeparam>
  263. <exception cref="T:System.ArgumentNullException">
  264. <paramref name="source" /> or <paramref name="selector" /> is null.</exception>
  265. <exception cref="T:System.InvalidOperationException">
  266. <paramref name="source" /> contains no elements.</exception>
  267. </member>
  268. <member name="M:System.Linq.Queryable.Average``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Int32}})">
  269. <summary>Computes the average of a sequence of <see cref="T:System.Int32" /> values that is obtained by invoking a projection function on each element of the input sequence.</summary>
  270. <returns>The average of the sequence of values.</returns>
  271. <param name="source">A sequence of values to calculate the average of.</param>
  272. <param name="selector">A projection function to apply to each element.</param>
  273. <typeparam name="TSource">The type of the elements of <paramref name="source" />.</typeparam>
  274. <exception cref="T:System.ArgumentNullException">
  275. <paramref name="source" /> or <paramref name="selector" /> is null.</exception>
  276. <exception cref="T:System.InvalidOperationException">
  277. <paramref name="source" /> contains no elements.</exception>
  278. </member>
  279. <member name="M:System.Linq.Queryable.Average``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Int64}})">
  280. <summary>Computes the average of a sequence of <see cref="T:System.Int64" /> values that is obtained by invoking a projection function on each element of the input sequence.</summary>
  281. <returns>The average of the sequence of values.</returns>
  282. <param name="source">A sequence of values to calculate the average of.</param>
  283. <param name="selector">A projection function to apply to each element.</param>
  284. <typeparam name="TSource">The type of the elements of <paramref name="source" />.</typeparam>
  285. <exception cref="T:System.ArgumentNullException">
  286. <paramref name="source" /> or <paramref name="selector" /> is null.</exception>
  287. <exception cref="T:System.InvalidOperationException">
  288. <paramref name="source" /> contains no elements.</exception>
  289. </member>
  290. <member name="M:System.Linq.Queryable.Average``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Nullable{System.Decimal}}})">
  291. <summary>Computes the average of a sequence of nullable <see cref="T:System.Decimal" /> values that is obtained by invoking a projection function on each element of the input sequence.</summary>
  292. <returns>The average of the sequence of values, or null if the <paramref name="source" /> sequence is empty or contains only null values.</returns>
  293. <param name="source">A sequence of values to calculate the average of.</param>
  294. <param name="selector">A projection function to apply to each element.</param>
  295. <typeparam name="TSource">The type of the elements of <paramref name="source" />.</typeparam>
  296. <exception cref="T:System.ArgumentNullException">
  297. <paramref name="source" /> or <paramref name="selector" /> is null.</exception>
  298. </member>
  299. <member name="M:System.Linq.Queryable.Average``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Nullable{System.Double}}})">
  300. <summary>Computes the average of a sequence of nullable <see cref="T:System.Double" /> values that is obtained by invoking a projection function on each element of the input sequence.</summary>
  301. <returns>The average of the sequence of values, or null if the <paramref name="source" /> sequence is empty or contains only null values.</returns>
  302. <param name="source">A sequence of values to calculate the average of.</param>
  303. <param name="selector">A projection function to apply to each element.</param>
  304. <typeparam name="TSource">The type of the elements of <paramref name="source" />.</typeparam>
  305. <exception cref="T:System.ArgumentNullException">
  306. <paramref name="source" /> or <paramref name="selector" /> is null.</exception>
  307. </member>
  308. <member name="M:System.Linq.Queryable.Average``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Nullable{System.Int32}}})">
  309. <summary>Computes the average of a sequence of nullable <see cref="T:System.Int32" /> values that is obtained by invoking a projection function on each element of the input sequence.</summary>
  310. <returns>The average of the sequence of values, or null if the <paramref name="source" /> sequence is empty or contains only null values.</returns>
  311. <param name="source">A sequence of values to calculate the average of.</param>
  312. <param name="selector">A projection function to apply to each element.</param>
  313. <typeparam name="TSource">The type of the elements of <paramref name="source" />.</typeparam>
  314. <exception cref="T:System.ArgumentNullException">
  315. <paramref name="source" /> or <paramref name="selector" /> is null.</exception>
  316. </member>
  317. <member name="M:System.Linq.Queryable.Average``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Nullable{System.Int64}}})">
  318. <summary>Computes the average of a sequence of nullable <see cref="T:System.Int64" /> values that is obtained by invoking a projection function on each element of the input sequence.</summary>
  319. <returns>The average of the sequence of values, or null if the <paramref name="source" /> sequence is empty or contains only null values.</returns>
  320. <param name="source">A sequence of values to calculate the average of.</param>
  321. <param name="selector">A projection function to apply to each element.</param>
  322. <typeparam name="TSource">The type of the elements of <paramref name="source" />.</typeparam>
  323. <exception cref="T:System.ArgumentNullException">
  324. <paramref name="source" /> or <paramref name="selector" /> is null.</exception>
  325. </member>
  326. <member name="M:System.Linq.Queryable.Average``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Nullable{System.Single}}})">
  327. <summary>Computes the average of a sequence of nullable <see cref="T:System.Single" /> values that is obtained by invoking a projection function on each element of the input sequence.</summary>
  328. <returns>The average of the sequence of values, or null if the <paramref name="source" /> sequence is empty or contains only null values.</returns>
  329. <param name="source">A sequence of values to calculate the average of.</param>
  330. <param name="selector">A projection function to apply to each element.</param>
  331. <typeparam name="TSource">The type of the elements of <paramref name="source" />.</typeparam>
  332. <exception cref="T:System.ArgumentNullException">
  333. <paramref name="source" /> or <paramref name="selector" /> is null.</exception>
  334. </member>
  335. <member name="M:System.Linq.Queryable.Average``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Single}})">
  336. <summary>Computes the average of a sequence of <see cref="T:System.Single" /> values that is obtained by invoking a projection function on each element of the input sequence.</summary>
  337. <returns>The average of the sequence of values.</returns>
  338. <param name="source">A sequence of values to calculate the average of.</param>
  339. <param name="selector">A projection function to apply to each element.</param>
  340. <typeparam name="TSource">The type of the elements of <paramref name="source" />.</typeparam>
  341. <exception cref="T:System.ArgumentNullException">
  342. <paramref name="source" /> or <paramref name="selector" /> is null.</exception>
  343. <exception cref="T:System.InvalidOperationException">
  344. <paramref name="source" /> contains no elements.</exception>
  345. </member>
  346. <member name="M:System.Linq.Queryable.Cast``1(System.Linq.IQueryable)">
  347. <summary>Converts the elements of an <see cref="T:System.Linq.IQueryable" /> to the specified type.</summary>
  348. <returns>An <see cref="T:System.Linq.IQueryable`1" /> that contains each element of the source sequence converted to the specified type.</returns>
  349. <param name="source">The <see cref="T:System.Linq.IQueryable" /> that contains the elements to be converted.</param>
  350. <typeparam name="TResult">The type to convert the elements of <paramref name="source" /> to.</typeparam>
  351. <exception cref="T:System.ArgumentNullException">
  352. <paramref name="source" /> is null.</exception>
  353. <exception cref="T:System.InvalidCastException">An element in the sequence cannot be cast to type <paramref name="TResult" />.</exception>
  354. </member>
  355. <member name="M:System.Linq.Queryable.Concat``1(System.Linq.IQueryable{``0},System.Collections.Generic.IEnumerable{``0})">
  356. <summary>Concatenates two sequences.</summary>
  357. <returns>An <see cref="T:System.Linq.IQueryable`1" /> that contains the concatenated elements of the two input sequences.</returns>
  358. <param name="source1">The first sequence to concatenate.</param>
  359. <param name="source2">The sequence to concatenate to the first sequence.</param>
  360. <typeparam name="TSource">The type of the elements of the input sequences.</typeparam>
  361. <exception cref="T:System.ArgumentNullException">
  362. <paramref name="source1" /> or <paramref name="source2" /> is null.</exception>
  363. </member>
  364. <member name="M:System.Linq.Queryable.Contains``1(System.Linq.IQueryable{``0},``0)">
  365. <summary>Determines whether a sequence contains a specified element by using the default equality comparer.</summary>
  366. <returns>true if the input sequence contains an element that has the specified value; otherwise, false.</returns>
  367. <param name="source">An <see cref="T:System.Linq.IQueryable`1" /> in which to locate <paramref name="item" />.</param>
  368. <param name="item">The object to locate in the sequence.</param>
  369. <typeparam name="TSource">The type of the elements of <paramref name="source" />.</typeparam>
  370. <exception cref="T:System.ArgumentNullException">
  371. <paramref name="source" /> is null.</exception>
  372. </member>
  373. <member name="M:System.Linq.Queryable.Contains``1(System.Linq.IQueryable{``0},``0,System.Collections.Generic.IEqualityComparer{``0})">
  374. <summary>Determines whether a sequence contains a specified element by using a specified <see cref="T:System.Collections.Generic.IEqualityComparer`1" />.</summary>
  375. <returns>true if the input sequence contains an element that has the specified value; otherwise, false.</returns>
  376. <param name="source">An <see cref="T:System.Linq.IQueryable`1" /> in which to locate <paramref name="item" />.</param>
  377. <param name="item">The object to locate in the sequence.</param>
  378. <param name="comparer">An <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> to compare values.</param>
  379. <typeparam name="TSource">The type of the elements of <paramref name="source" />.</typeparam>
  380. <exception cref="T:System.ArgumentNullException">
  381. <paramref name="source" /> is null.</exception>
  382. </member>
  383. <member name="M:System.Linq.Queryable.Count``1(System.Linq.IQueryable{``0})">
  384. <summary>Returns the number of elements in a sequence.</summary>
  385. <returns>The number of elements in the input sequence.</returns>
  386. <param name="source">The <see cref="T:System.Linq.IQueryable`1" /> that contains the elements to be counted.</param>
  387. <typeparam name="TSource">The type of the elements of <paramref name="source" />.</typeparam>
  388. <exception cref="T:System.ArgumentNullException">
  389. <paramref name="source" /> is null.</exception>
  390. <exception cref="T:System.OverflowException">The number of elements in <paramref name="source" /> is larger than <see cref="F:System.Int32.MaxValue" />.</exception>
  391. </member>
  392. <member name="M:System.Linq.Queryable.Count``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}})">
  393. <summary>Returns the number of elements in the specified sequence that satisfies a condition.</summary>
  394. <returns>The number of elements in the sequence that satisfies the condition in the predicate function.</returns>
  395. <param name="source">An <see cref="T:System.Linq.IQueryable`1" /> that contains the elements to be counted.</param>
  396. <param name="predicate">A function to test each element for a condition.</param>
  397. <typeparam name="TSource">The type of the elements of <paramref name="source" />.</typeparam>
  398. <exception cref="T:System.ArgumentNullException">
  399. <paramref name="source" /> or <paramref name="predicate" /> is null.</exception>
  400. <exception cref="T:System.OverflowException">The number of elements in <paramref name="source" /> is larger than <see cref="F:System.Int32.MaxValue" />.</exception>
  401. </member>
  402. <member name="M:System.Linq.Queryable.DefaultIfEmpty``1(System.Linq.IQueryable{``0})">
  403. <summary>Returns the elements of the specified sequence or the type parameter's default value in a singleton collection if the sequence is empty.</summary>
  404. <returns>An <see cref="T:System.Linq.IQueryable`1" /> that contains default(<paramref name="TSource" />) if <paramref name="source" /> is empty; otherwise, <paramref name="source" />.</returns>
  405. <param name="source">The <see cref="T:System.Linq.IQueryable`1" /> to return a default value for if empty.</param>
  406. <typeparam name="TSource">The type of the elements of <paramref name="source" />.</typeparam>
  407. <exception cref="T:System.ArgumentNullException">
  408. <paramref name="source" /> is null.</exception>
  409. </member>
  410. <member name="M:System.Linq.Queryable.DefaultIfEmpty``1(System.Linq.IQueryable{``0},``0)">
  411. <summary>Returns the elements of the specified sequence or the specified value in a singleton collection if the sequence is empty.</summary>
  412. <returns>An <see cref="T:System.Linq.IQueryable`1" /> that contains <paramref name="defaultValue" /> if <paramref name="source" /> is empty; otherwise, <paramref name="source" />.</returns>
  413. <param name="source">The <see cref="T:System.Linq.IQueryable`1" /> to return the specified value for if empty.</param>
  414. <param name="defaultValue">The value to return if the sequence is empty.</param>
  415. <typeparam name="TSource">The type of the elements of <paramref name="source" />.</typeparam>
  416. <exception cref="T:System.ArgumentNullException">
  417. <paramref name="source" /> is null.</exception>
  418. </member>
  419. <member name="M:System.Linq.Queryable.Distinct``1(System.Linq.IQueryable{``0})">
  420. <summary>Returns distinct elements from a sequence by using the default equality comparer to compare values.</summary>
  421. <returns>An <see cref="T:System.Linq.IQueryable`1" /> that contains distinct elements from <paramref name="source" />.</returns>
  422. <param name="source">The <see cref="T:System.Linq.IQueryable`1" /> to remove duplicates from.</param>
  423. <typeparam name="TSource">The type of the elements of <paramref name="source" />.</typeparam>
  424. <exception cref="T:System.ArgumentNullException">
  425. <paramref name="source" /> is null.</exception>
  426. </member>
  427. <member name="M:System.Linq.Queryable.Distinct``1(System.Linq.IQueryable{``0},System.Collections.Generic.IEqualityComparer{``0})">
  428. <summary>Returns distinct elements from a sequence by using a specified <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> to compare values.</summary>
  429. <returns>An <see cref="T:System.Linq.IQueryable`1" /> that contains distinct elements from <paramref name="source" />.</returns>
  430. <param name="source">The <see cref="T:System.Linq.IQueryable`1" /> to remove duplicates from.</param>
  431. <param name="comparer">An <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> to compare values.</param>
  432. <typeparam name="TSource">The type of the elements of <paramref name="source" />.</typeparam>
  433. <exception cref="T:System.ArgumentNullException">
  434. <paramref name="source" /> or <paramref name="comparer" /> is null.</exception>
  435. </member>
  436. <member name="M:System.Linq.Queryable.ElementAt``1(System.Linq.IQueryable{``0},System.Int32)">
  437. <summary>Returns the element at a specified index in a sequence.</summary>
  438. <returns>The element at the specified position in <paramref name="source" />.</returns>
  439. <param name="source">An <see cref="T:System.Linq.IQueryable`1" /> to return an element from.</param>
  440. <param name="index">The zero-based index of the element to retrieve.</param>
  441. <typeparam name="TSource">The type of the elements of <paramref name="source" />.</typeparam>
  442. <exception cref="T:System.ArgumentNullException">
  443. <paramref name="source" /> is null.</exception>
  444. <exception cref="T:System.ArgumentOutOfRangeException">
  445. <paramref name="index" /> is less than zero.</exception>
  446. </member>
  447. <member name="M:System.Linq.Queryable.ElementAtOrDefault``1(System.Linq.IQueryable{``0},System.Int32)">
  448. <summary>Returns the element at a specified index in a sequence or a default value if the index is out of range.</summary>
  449. <returns>default(<paramref name="TSource" />) if <paramref name="index" /> is outside the bounds of <paramref name="source" />; otherwise, the element at the specified position in <paramref name="source" />.</returns>
  450. <param name="source">An <see cref="T:System.Linq.IQueryable`1" /> to return an element from.</param>
  451. <param name="index">The zero-based index of the element to retrieve.</param>
  452. <typeparam name="TSource">The type of the elements of <paramref name="source" />.</typeparam>
  453. <exception cref="T:System.ArgumentNullException">
  454. <paramref name="source" /> is null.</exception>
  455. </member>
  456. <member name="M:System.Linq.Queryable.Except``1(System.Linq.IQueryable{``0},System.Collections.Generic.IEnumerable{``0})">
  457. <summary>Produces the set difference of two sequences by using the default equality comparer to compare values.</summary>
  458. <returns>An <see cref="T:System.Linq.IQueryable`1" /> that contains the set difference of the two sequences.</returns>
  459. <param name="source1">An <see cref="T:System.Linq.IQueryable`1" /> whose elements that are not also in <paramref name="source2" /> will be returned.</param>
  460. <param name="source2">An <see cref="T:System.Collections.Generic.IEnumerable`1" /> whose elements that also occur in the first sequence will not appear in the returned sequence.</param>
  461. <typeparam name="TSource">The type of the elements of the input sequences.</typeparam>
  462. <exception cref="T:System.ArgumentNullException">
  463. <paramref name="source1" /> or <paramref name="source2" /> is null.</exception>
  464. </member>
  465. <member name="M:System.Linq.Queryable.Except``1(System.Linq.IQueryable{``0},System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEqualityComparer{``0})">
  466. <summary>Produces the set difference of two sequences by using the specified <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> to compare values.</summary>
  467. <returns>An <see cref="T:System.Linq.IQueryable`1" /> that contains the set difference of the two sequences.</returns>
  468. <param name="source1">An <see cref="T:System.Linq.IQueryable`1" /> whose elements that are not also in <paramref name="source2" /> will be returned.</param>
  469. <param name="source2">An <see cref="T:System.Collections.Generic.IEnumerable`1" /> whose elements that also occur in the first sequence will not appear in the returned sequence.</param>
  470. <param name="comparer">An <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> to compare values.</param>
  471. <typeparam name="TSource">The type of the elements of the input sequences.</typeparam>
  472. <exception cref="T:System.ArgumentNullException">
  473. <paramref name="source1" /> or <paramref name="source2" /> is null.</exception>
  474. </member>
  475. <member name="M:System.Linq.Queryable.First``1(System.Linq.IQueryable{``0})">
  476. <summary>Returns the first element of a sequence.</summary>
  477. <returns>The first element in <paramref name="source" />.</returns>
  478. <param name="source">The <see cref="T:System.Linq.IQueryable`1" /> to return the first element of.</param>
  479. <typeparam name="TSource">The type of the elements of <paramref name="source" />.</typeparam>
  480. <exception cref="T:System.ArgumentNullException">
  481. <paramref name="source" /> is null.</exception>
  482. <exception cref="T:System.InvalidOperationException">The source sequence is empty.</exception>
  483. </member>
  484. <member name="M:System.Linq.Queryable.First``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}})">
  485. <summary>Returns the first element of a sequence that satisfies a specified condition.</summary>
  486. <returns>The first element in <paramref name="source" /> that passes the test in <paramref name="predicate" />.</returns>
  487. <param name="source">An <see cref="T:System.Linq.IQueryable`1" /> to return an element from.</param>
  488. <param name="predicate">A function to test each element for a condition.</param>
  489. <typeparam name="TSource">The type of the elements of <paramref name="source" />.</typeparam>
  490. <exception cref="T:System.ArgumentNullException">
  491. <paramref name="source" /> or <paramref name="predicate" /> is null.</exception>
  492. <exception cref="T:System.InvalidOperationException">No element satisfies the condition in <paramref name="predicate" />.-or-The source sequence is empty.</exception>
  493. </member>
  494. <member name="M:System.Linq.Queryable.FirstOrDefault``1(System.Linq.IQueryable{``0})">
  495. <summary>Returns the first element of a sequence, or a default value if the sequence contains no elements.</summary>
  496. <returns>default(<paramref name="TSource" />) if <paramref name="source" /> is empty; otherwise, the first element in <paramref name="source" />.</returns>
  497. <param name="source">The <see cref="T:System.Linq.IQueryable`1" /> to return the first element of.</param>
  498. <typeparam name="TSource">The type of the elements of <paramref name="source" />.</typeparam>
  499. <exception cref="T:System.ArgumentNullException">
  500. <paramref name="source" /> is null.</exception>
  501. </member>
  502. <member name="M:System.Linq.Queryable.FirstOrDefault``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}})">
  503. <summary>Returns the first element of a sequence that satisfies a specified condition or a default value if no such element is found.</summary>
  504. <returns>default(<paramref name="TSource" />) if <paramref name="source" /> is empty or if no element passes the test specified by <paramref name="predicate" />; otherwise, the first element in <paramref name="source" /> that passes the test specified by <paramref name="predicate" />.</returns>
  505. <param name="source">An <see cref="T:System.Linq.IQueryable`1" /> to return an element from.</param>
  506. <param name="predicate">A function to test each element for a condition.</param>
  507. <typeparam name="TSource">The type of the elements of <paramref name="source" />.</typeparam>
  508. <exception cref="T:System.ArgumentNullException">
  509. <paramref name="source" /> or <paramref name="predicate" /> is null.</exception>
  510. </member>
  511. <member name="M:System.Linq.Queryable.GroupBy``2(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}})">
  512. <summary>Groups the elements of a sequence according to a specified key selector function.</summary>
  513. <returns>An IQueryable&lt;IGrouping&lt;TKey, TSource&gt;&gt; in C# or IQueryable(Of IGrouping(Of TKey, TSource)) in Visual Basic where each <see cref="T:System.Linq.IGrouping`2" /> object contains a sequence of objects and a key.</returns>
  514. <param name="source">An <see cref="T:System.Linq.IQueryable`1" /> whose elements to group.</param>
  515. <param name="keySelector">A function to extract the key for each element.</param>
  516. <typeparam name="TSource">The type of the elements of <paramref name="source" />.</typeparam>
  517. <typeparam name="TKey">The type of the key returned by the function represented in <paramref name="keySelector" />.</typeparam>
  518. <exception cref="T:System.ArgumentNullException">
  519. <paramref name="source" /> or <paramref name="keySelector" /> is null.</exception>
  520. </member>
  521. <member name="M:System.Linq.Queryable.GroupBy``2(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}},System.Collections.Generic.IEqualityComparer{``1})">
  522. <summary>Groups the elements of a sequence according to a specified key selector function and compares the keys by using a specified comparer.</summary>
  523. <returns>An IQueryable&lt;IGrouping&lt;TKey, TSource&gt;&gt; in C# or IQueryable(Of IGrouping(Of TKey, TSource)) in Visual Basic where each <see cref="T:System.Linq.IGrouping`2" /> contains a sequence of objects and a key.</returns>
  524. <param name="source">An <see cref="T:System.Linq.IQueryable`1" /> whose elements to group.</param>
  525. <param name="keySelector">A function to extract the key for each element.</param>
  526. <param name="comparer">An <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> to compare keys.</param>
  527. <typeparam name="TSource">The type of the elements of <paramref name="source" />.</typeparam>
  528. <typeparam name="TKey">The type of the key returned by the function represented in <paramref name="keySelector" />.</typeparam>
  529. <exception cref="T:System.ArgumentNullException">
  530. <paramref name="source" /> or <paramref name="keySelector" /> or <paramref name="comparer" /> is null.</exception>
  531. </member>
  532. <member name="M:System.Linq.Queryable.GroupBy``3(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}},System.Linq.Expressions.Expression{System.Func{``0,``2}})">
  533. <summary>Groups the elements of a sequence according to a specified key selector function and projects the elements for each group by using a specified function.</summary>
  534. <returns>An IQueryable&lt;IGrouping&lt;TKey, TElement&gt;&gt; in C# or IQueryable(Of IGrouping(Of TKey, TElement)) in Visual Basic where each <see cref="T:System.Linq.IGrouping`2" /> contains a sequence of objects of type <paramref name="TElement" /> and a key.</returns>
  535. <param name="source">An <see cref="T:System.Linq.IQueryable`1" /> whose elements to group.</param>
  536. <param name="keySelector">A function to extract the key for each element.</param>
  537. <param name="elementSelector">A function to map each source element to an element in an <see cref="T:System.Linq.IGrouping`2" />.</param>
  538. <typeparam name="TSource">The type of the elements of <paramref name="source" />.</typeparam>
  539. <typeparam name="TKey">The type of the key returned by the function represented in <paramref name="keySelector" />.</typeparam>
  540. <typeparam name="TElement">The type of the elements in each <see cref="T:System.Linq.IGrouping`2" />.</typeparam>
  541. <exception cref="T:System.ArgumentNullException">
  542. <paramref name="source" /> or <paramref name="keySelector" /> or <paramref name="elementSelector" /> is null.</exception>
  543. </member>
  544. <member name="M:System.Linq.Queryable.GroupBy``3(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}},System.Linq.Expressions.Expression{System.Func{``0,``2}},System.Collections.Generic.IEqualityComparer{``1})">
  545. <summary>Groups the elements of a sequence and projects the elements for each group by using a specified function. Key values are compared by using a specified comparer.</summary>
  546. <returns>An IQueryable&lt;IGrouping&lt;TKey, TElement&gt;&gt; in C# or IQueryable(Of IGrouping(Of TKey, TElement)) in Visual Basic where each <see cref="T:System.Linq.IGrouping`2" /> contains a sequence of objects of type <paramref name="TElement" /> and a key.</returns>
  547. <param name="source">An <see cref="T:System.Linq.IQueryable`1" /> whose elements to group.</param>
  548. <param name="keySelector">A function to extract the key for each element.</param>
  549. <param name="elementSelector">A function to map each source element to an element in an <see cref="T:System.Linq.IGrouping`2" />.</param>
  550. <param name="comparer">An <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> to compare keys.</param>
  551. <typeparam name="TSource">The type of the elements of <paramref name="source" />.</typeparam>
  552. <typeparam name="TKey">The type of the key returned by the function represented in <paramref name="keySelector" />.</typeparam>
  553. <typeparam name="TElement">The type of the elements in each <see cref="T:System.Linq.IGrouping`2" />.</typeparam>
  554. <exception cref="T:System.ArgumentNullException">
  555. <paramref name="source" /> or <paramref name="keySelector" /> or <paramref name="elementSelector" /> or <paramref name="comparer" /> is null.</exception>
  556. </member>
  557. <member name="M:System.Linq.Queryable.GroupBy``4(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}},System.Linq.Expressions.Expression{System.Func{``0,``2}},System.Linq.Expressions.Expression{System.Func{``1,System.Collections.Generic.IEnumerable{``2},``3}})">
  558. <summary>Groups the elements of a sequence according to a specified key selector function and creates a result value from each group and its key. The elements of each group are projected by using a specified function.</summary>
  559. <returns>An T:System.Linq.IQueryable`1 that has a type argument of <paramref name="TResult" /> and where each element represents a projection over a group and its key.</returns>
  560. <param name="source">An <see cref="T:System.Linq.IQueryable`1" /> whose elements to group.</param>
  561. <param name="keySelector">A function to extract the key for each element.</param>
  562. <param name="elementSelector">A function to map each source element to an element in an <see cref="T:System.Linq.IGrouping`2" />.</param>
  563. <param name="resultSelector">A function to create a result value from each group.</param>
  564. <typeparam name="TSource">The type of the elements of <paramref name="source" />.</typeparam>
  565. <typeparam name="TKey">The type of the key returned by the function represented in <paramref name="keySelector" />.</typeparam>
  566. <typeparam name="TElement">The type of the elements in each <see cref="T:System.Linq.IGrouping`2" />.</typeparam>
  567. <typeparam name="TResult">The type of the result value returned by <paramref name="resultSelector" />.</typeparam>
  568. <exception cref="T:System.ArgumentNullException">
  569. <paramref name="source" /> or <paramref name="keySelector" /> or <paramref name="elementSelector" /> or <paramref name="resultSelector" /> is null.</exception>
  570. </member>
  571. <member name="M:System.Linq.Queryable.GroupBy``4(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}},System.Linq.Expressions.Expression{System.Func{``0,``2}},System.Linq.Expressions.Expression{System.Func{``1,System.Collections.Generic.IEnumerable{``2},``3}},System.Collections.Generic.IEqualityComparer{``1})">
  572. <summary>Groups the elements of a sequence according to a specified key selector function and creates a result value from each group and its key. Keys are compared by using a specified comparer and the elements of each group are projected by using a specified function.</summary>
  573. <returns>An T:System.Linq.IQueryable`1 that has a type argument of <paramref name="TResult" /> and where each element represents a projection over a group and its key.</returns>
  574. <param name="source">An <see cref="T:System.Linq.IQueryable`1" /> whose elements to group.</param>
  575. <param name="keySelector">A function to extract the key for each element.</param>
  576. <param name="elementSelector">A function to map each source element to an element in an <see cref="T:System.Linq.IGrouping`2" />.</param>
  577. <param name="resultSelector">A function to create a result value from each group.</param>
  578. <param name="comparer">An <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> to compare keys.</param>
  579. <typeparam name="TSource">The type of the elements of <paramref name="source" />.</typeparam>
  580. <typeparam name="TKey">The type of the key returned by the function represented in <paramref name="keySelector" />.</typeparam>
  581. <typeparam name="TElement">The type of the elements in each <see cref="T:System.Linq.IGrouping`2" />.</typeparam>
  582. <typeparam name="TResult">The type of the result value returned by <paramref name="resultSelector" />.</typeparam>
  583. <exception cref="T:System.ArgumentNullException">
  584. <paramref name="source" /> or <paramref name="keySelector" /> or <paramref name="elementSelector" /> or <paramref name="resultSelector" /> or <paramref name="comparer" /> is null.</exception>
  585. </member>
  586. <member name="M:System.Linq.Queryable.GroupBy``3(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}},System.Linq.Expressions.Expression{System.Func{``1,System.Collections.Generic.IEnumerable{``0},``2}})">
  587. <summary>Groups the elements of a sequence according to a specified key selector function and creates a result value from each group and its key.</summary>
  588. <returns>An T:System.Linq.IQueryable`1 that has a type argument of <paramref name="TResult" /> and where each element represents a projection over a group and its key.</returns>
  589. <param name="source">An <see cref="T:System.Linq.IQueryable`1" /> whose elements to group.</param>
  590. <param name="keySelector">A function to extract the key for each element.</param>
  591. <param name="resultSelector">A function to create a result value from each group.</param>
  592. <typeparam name="TSource">The type of the elements of <paramref name="source" />.</typeparam>
  593. <typeparam name="TKey">The type of the key returned by the function represented in <paramref name="keySelector" />.</typeparam>
  594. <typeparam name="TResult">The type of the result value returned by <paramref name="resultSelector" />.</typeparam>
  595. <exception cref="T:System.ArgumentNullException">
  596. <paramref name="source" /> or <paramref name="keySelector" /> or <paramref name="resultSelector" /> is null.</exception>
  597. </member>
  598. <member name="M:System.Linq.Queryable.GroupBy``3(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}},System.Linq.Expressions.Expression{System.Func{``1,System.Collections.Generic.IEnumerable{``0},``2}},System.Collections.Generic.IEqualityComparer{``1})">
  599. <summary>Groups the elements of a sequence according to a specified key selector function and creates a result value from each group and its key. Keys are compared by using a specified comparer.</summary>
  600. <returns>An T:System.Linq.IQueryable`1 that has a type argument of <paramref name="TResult" /> and where each element represents a projection over a group and its key.</returns>
  601. <param name="source">An <see cref="T:System.Linq.IQueryable`1" /> whose elements to group.</param>
  602. <param name="keySelector">A function to extract the key for each element.</param>
  603. <param name="resultSelector">A function to create a result value from each group.</param>
  604. <param name="comparer">An <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> to compare keys.</param>
  605. <typeparam name="TSource">The type of the elements of <paramref name="source" />.</typeparam>
  606. <typeparam name="TKey">The type of the key returned by the function represented in <paramref name="keySelector" />.</typeparam>
  607. <typeparam name="TResult">The type of the result value returned by <paramref name="resultSelector" />.</typeparam>
  608. <exception cref="T:System.ArgumentNullException">
  609. <paramref name="source" /> or <paramref name="keySelector" /> or <paramref name="resultSelector" /> or <paramref name="comparer" /> is null.</exception>
  610. </member>
  611. <member name="M:System.Linq.Queryable.GroupJoin``4(System.Linq.IQueryable{``0},System.Collections.Generic.IEnumerable{``1},System.Linq.Expressions.Expression{System.Func{``0,``2}},System.Linq.Expressions.Expression{System.Func{``1,``2}},System.Linq.Expressions.Expression{System.Func{``0,System.Collections.Generic.IEnumerable{``1},``3}})">
  612. <summary>Correlates the elements of two sequences based on key equality and groups the results. The default equality comparer is used to compare keys.</summary>
  613. <returns>An <see cref="T:System.Linq.IQueryable`1" /> that contains elements of type <paramref name="TResult" /> obtained by performing a grouped join on two sequences.</returns>
  614. <param name="outer">The first sequence to join.</param>
  615. <param name="inner">The sequence to join to the first sequence.</param>
  616. <param name="outerKeySelector">A function to extract the join key from each element of the first sequence.</param>
  617. <param name="innerKeySelector">A function to extract the join key from each element of the second sequence.</param>
  618. <param name="resultSelector">A function to create a result element from an element from the first sequence and a collection of matching elements from the second sequence.</param>
  619. <typeparam name="TOuter">The type of the elements of the first sequence.</typeparam>
  620. <typeparam name="TInner">The type of the elements of the second sequence.</typeparam>
  621. <typeparam name="TKey">The type of the keys returned by the key selector functions.</typeparam>
  622. <typeparam name="TResult">The type of the result elements.</typeparam>
  623. <exception cref="T:System.ArgumentNullException">
  624. <paramref name="outer" /> or <paramref name="inner" /> or <paramref name="outerKeySelector" /> or <paramref name="innerKeySelector" /> or <paramref name="resultSelector" /> is null.</exception>
  625. </member>
  626. <member name="M:System.Linq.Queryable.GroupJoin``4(System.Linq.IQueryable{``0},System.Collections.Generic.IEnumerable{``1},System.Linq.Expressions.Expression{System.Func{``0,``2}},System.Linq.Expressions.Expression{System.Func{``1,``2}},System.Linq.Expressions.Expression{System.Func{``0,System.Collections.Generic.IEnumerable{``1},``3}},System.Collections.Generic.IEqualityComparer{``2})">
  627. <summary>Correlates the elements of two sequences based on key equality and groups the results. A specified <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> is used to compare keys.</summary>
  628. <returns>An <see cref="T:System.Linq.IQueryable`1" /> that contains elements of type <paramref name="TResult" /> obtained by performing a grouped join on two sequences.</returns>
  629. <param name="outer">The first sequence to join.</param>
  630. <param name="inner">The sequence to join to the first sequence.</param>
  631. <param name="outerKeySelector">A function to extract the join key from each element of the first sequence.</param>
  632. <param name="innerKeySelector">A function to extract the join key from each element of the second sequence.</param>
  633. <param name="resultSelector">A function to create a result element from an element from the first sequence and a collection of matching elements from the second sequence.</param>
  634. <param name="comparer">A comparer to hash and compare keys.</param>
  635. <typeparam name="TOuter">The type of the elements of the first sequence.</typeparam>
  636. <typeparam name="TInner">The type of the elements of the second sequence.</typeparam>
  637. <typeparam name="TKey">The type of the keys returned by the key selector functions.</typeparam>
  638. <typeparam name="TResult">The type of the result elements.</typeparam>
  639. <exception cref="T:System.ArgumentNullException">
  640. <paramref name="outer" /> or <paramref name="inner" /> or <paramref name="outerKeySelector" /> or <paramref name="innerKeySelector" /> or <paramref name="resultSelector" /> is null.</exception>
  641. </member>
  642. <member name="M:System.Linq.Queryable.Intersect``1(System.Linq.IQueryable{``0},System.Collections.Generic.IEnumerable{``0})">
  643. <summary>Produces the set intersection of two sequences by using the default equality comparer to compare values.</summary>
  644. <returns>A sequence that contains the set intersection of the two sequences.</returns>
  645. <param name="source1">A sequence whose distinct elements that also appear in <paramref name="source2" /> are returned.</param>
  646. <param name="source2">A sequence whose distinct elements that also appear in the first sequence are returned.</param>
  647. <typeparam name="TSource">The type of the elements of the input sequences.</typeparam>
  648. <exception cref="T:System.ArgumentNullException">
  649. <paramref name="source1" /> or <paramref name="source2" /> is null.</exception>
  650. </member>
  651. <member name="M:System.Linq.Queryable.Intersect``1(System.Linq.IQueryable{``0},System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEqualityComparer{``0})">
  652. <summary>Produces the set intersection of two sequences by using the specified <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> to compare values.</summary>
  653. <returns>An <see cref="T:System.Linq.IQueryable`1" /> that contains the set intersection of the two sequences.</returns>
  654. <param name="source1">An <see cref="T:System.Linq.IQueryable`1" /> whose distinct elements that also appear in <paramref name="source2" /> are returned.</param>
  655. <param name="source2">An <see cref="T:System.Collections.Generic.IEnumerable`1" /> whose distinct elements that also appear in the first sequence are returned.</param>
  656. <param name="comparer">An <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> to compare values.</param>
  657. <typeparam name="TSource">The type of the elements of the input sequences.</typeparam>
  658. <exception cref="T:System.ArgumentNullException">
  659. <paramref name="source1" /> or <paramref name="source2" /> is null.</exception>
  660. </member>
  661. <member name="M:System.Linq.Queryable.Join``4(System.Linq.IQueryable{``0},System.Collections.Generic.IEnumerable{``1},System.Linq.Expressions.Expression{System.Func{``0,``2}},System.Linq.Expressions.Expression{System.Func{``1,``2}},System.Linq.Expressions.Expression{System.Func{``0,``1,``3}})">
  662. <summary>Correlates the elements of two sequences based on matching keys. The default equality comparer is used to compare keys.</summary>
  663. <returns>An <see cref="T:System.Linq.IQueryable`1" /> that has elements of type <paramref name="TResult" /> obtained by performing an inner join on two sequences.</returns>
  664. <param name="outer">The first sequence to join.</param>
  665. <param name="inner">The sequence to join to the first sequence.</param>
  666. <param name="outerKeySelector">A function to extract the join key from each element of the first sequence.</param>
  667. <param name="innerKeySelector">A function to extract the join key from each element of the second sequence.</param>
  668. <param name="resultSelector">A function to create a result element from two matching elements.</param>
  669. <typeparam name="TOuter">The type of the elements of the first sequence.</typeparam>
  670. <typeparam name="TInner">The type of the elements of the second sequence.</typeparam>
  671. <typeparam name="TKey">The type of the keys returned by the key selector functions.</typeparam>
  672. <typeparam name="TResult">The type of the result elements.</typeparam>
  673. <exception cref="T:System.ArgumentNullException">
  674. <paramref name="outer" /> or <paramref name="inner" /> or <paramref name="outerKeySelector" /> or <paramref name="innerKeySelector" /> or <paramref name="resultSelector" /> is null.</exception>
  675. </member>
  676. <member name="M:System.Linq.Queryable.Join``4(System.Linq.IQueryable{``0},System.Collections.Generic.IEnumerable{``1},System.Linq.Expressions.Expression{System.Func{``0,``2}},System.Linq.Expressions.Expression{System.Func{``1,``2}},System.Linq.Expressions.Expression{System.Func{``0,``1,``3}},System.Collections.Generic.IEqualityComparer{``2})">
  677. <summary>Correlates the elements of two sequences based on matching keys. A specified <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> is used to compare keys.</summary>
  678. <returns>An <see cref="T:System.Linq.IQueryable`1" /> that has elements of type <paramref name="TResult" /> obtained by performing an inner join on two sequences.</returns>
  679. <param name="outer">The first sequence to join.</param>
  680. <param name="inner">The sequence to join to the first sequence.</param>
  681. <param name="outerKeySelector">A function to extract the join key from each element of the first sequence.</param>
  682. <param name="innerKeySelector">A function to extract the join key from each element of the second sequence.</param>
  683. <param name="resultSelector">A function to create a result element from two matching elements.</param>
  684. <param name="comparer">An <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> to hash and compare keys.</param>
  685. <typeparam name="TOuter">The type of the elements of the first sequence.</typeparam>
  686. <typeparam name="TInner">The type of the elements of the second sequence.</typeparam>
  687. <typeparam name="TKey">The type of the keys returned by the key selector functions.</typeparam>
  688. <typeparam name="TResult">The type of the result elements.</typeparam>
  689. <exception cref="T:System.ArgumentNullException">
  690. <paramref name="outer" /> or <paramref name="inner" /> or <paramref name="outerKeySelector" /> or <paramref name="innerKeySelector" /> or <paramref name="resultSelector" /> is null.</exception>
  691. </member>
  692. <member name="M:System.Linq.Queryable.Last``1(System.Linq.IQueryable{``0})">
  693. <summary>Returns the last element in a sequence.</summary>
  694. <returns>The value at the last position in <paramref name="source" />.</returns>
  695. <param name="source">An <see cref="T:System.Linq.IQueryable`1" /> to return the last element of.</param>
  696. <typeparam name="TSource">The type of the elements of <paramref name="source" />.</typeparam>
  697. <exception cref="T:System.ArgumentNullException">
  698. <paramref name="source" /> is null.</exception>
  699. <exception cref="T:System.InvalidOperationException">The source sequence is empty.</exception>
  700. </member>
  701. <member name="M:System.Linq.Queryable.Last``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}})">
  702. <summary>Returns the last element of a sequence that satisfies a specified condition.</summary>
  703. <returns>The last element in <paramref name="source" /> that passes the test specified by <paramref name="predicate" />.</returns>
  704. <param name="source">An <see cref="T:System.Linq.IQueryable`1" /> to return an element from.</param>
  705. <param name="predicate">A function to test each element for a condition.</param>
  706. <typeparam name="TSource">The type of the elements of <paramref name="source" />.</typeparam>
  707. <exception cref="T:System.ArgumentNullException">
  708. <paramref name="source" /> or <paramref name="predicate" /> is null.</exception>
  709. <exception cref="T:System.InvalidOperationException">No element satisfies the condition in <paramref name="predicate" />.-or-The source sequence is empty.</exception>
  710. </member>
  711. <member name="M:System.Linq.Queryable.LastOrDefault``1(System.Linq.IQueryable{``0})">
  712. <summary>Returns the last element in a sequence, or a default value if the sequence contains no elements.</summary>
  713. <returns>default(<paramref name="TSource" />) if <paramref name="source" /> is empty; otherwise, the last element in <paramref name="source" />.</returns>
  714. <param name="source">An <see cref="T:System.Linq.IQueryable`1" /> to return the last element of.</param>
  715. <typeparam name="TSource">The type of the elements of <paramref name="source" />.</typeparam>
  716. <exception cref="T:System.ArgumentNullException">
  717. <paramref name="source" /> is null.</exception>
  718. </member>
  719. <member name="M:System.Linq.Queryable.LastOrDefault``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}})">
  720. <summary>Returns the last element of a sequence that satisfies a condition or a default value if no such element is found.</summary>
  721. <returns>default(<paramref name="TSource" />) if <paramref name="source" /> is empty or if no elements pass the test in the predicate function; otherwise, the last element of <paramref name="source" /> that passes the test in the predicate function.</returns>
  722. <param name="source">An <see cref="T:System.Linq.IQueryable`1" /> to return an element from.</param>
  723. <param name="predicate">A function to test each element for a condition.</param>
  724. <typeparam name="TSource">The type of the elements of <paramref name="source" />.</typeparam>
  725. <exception cref="T:System.ArgumentNullException">
  726. <paramref name="source" /> or <paramref name="predicate" /> is null.</exception>
  727. </member>
  728. <member name="M:System.Linq.Queryable.LongCount``1(System.Linq.IQueryable{``0})">
  729. <summary>Returns an <see cref="T:System.Int64" /> that represents the total number of elements in a sequence.</summary>
  730. <returns>The number of elements in <paramref name="source" />.</returns>
  731. <param name="source">An <see cref="T:System.Linq.IQueryable`1" /> that contains the elements to be counted.</param>
  732. <typeparam name="TSource">The type of the elements of <paramref name="source" />.</typeparam>
  733. <exception cref="T:System.ArgumentNullException">
  734. <paramref name="source" /> is null.</exception>
  735. <exception cref="T:System.OverflowException">The number of elements exceeds <see cref="F:System.Int64.MaxValue" />.</exception>
  736. </member>
  737. <member name="M:System.Linq.Queryable.LongCount``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}})">
  738. <summary>Returns an <see cref="T:System.Int64" /> that represents the number of elements in a sequence that satisfy a condition.</summary>
  739. <returns>The number of elements in <paramref name="source" /> that satisfy the condition in the predicate function.</returns>
  740. <param name="source">An <see cref="T:System.Linq.IQueryable`1" /> that contains the elements to be counted.</param>
  741. <param name="predicate">A function to test each element for a condition.</param>
  742. <typeparam name="TSource">The type of the elements of <paramref name="source" />.</typeparam>
  743. <exception cref="T:System.ArgumentNullException">
  744. <paramref name="source" /> or <paramref name="predicate" /> is null.</exception>
  745. <exception cref="T:System.OverflowException">The number of matching elements exceeds <see cref="F:System.Int64.MaxValue" />.</exception>
  746. </member>
  747. <member name="M:System.Linq.Queryable.Max``1(System.Linq.IQueryable{``0})">
  748. <summary>Returns the maximum value in a generic <see cref="T:System.Linq.IQueryable`1" />.</summary>
  749. <returns>The maximum value in the sequence.</returns>
  750. <param name="source">A sequence of values to determine the maximum of.</param>
  751. <typeparam name="TSource">The type of the elements of <paramref name="source" />.</typeparam>
  752. <exception cref="T:System.ArgumentNullException">
  753. <paramref name="source" /> is null.</exception>
  754. </member>
  755. <member name="M:System.Linq.Queryable.Max``2(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}})">
  756. <summary>Invokes a projection function on each element of a generic <see cref="T:System.Linq.IQueryable`1" /> and returns the maximum resulting value.</summary>
  757. <returns>The maximum value in the sequence.</returns>
  758. <param name="source">A sequence of values to determine the maximum of.</param>
  759. <param name="selector">A projection function to apply to each element.</param>
  760. <typeparam name="TSource">The type of the elements of <paramref name="source" />.</typeparam>
  761. <typeparam name="TResult">The type of the value returned by the function represented by <paramref name="selector" />.</typeparam>
  762. <exception cref="T:System.ArgumentNullException">
  763. <paramref name="source" /> or <paramref name="selector" /> is null.</exception>
  764. </member>
  765. <member name="M:System.Linq.Queryable.Min``1(System.Linq.IQueryable{``0})">
  766. <summary>Returns the minimum value of a generic <see cref="T:System.Linq.IQueryable`1" />.</summary>
  767. <returns>The minimum value in the sequence.</returns>
  768. <param name="source">A sequence of values to determine the minimum of.</param>
  769. <typeparam name="TSource">The type of the elements of <paramref name="source" />.</typeparam>
  770. <exception cref="T:System.ArgumentNullException">
  771. <paramref name="source" /> is null.</exception>
  772. </member>
  773. <member name="M:System.Linq.Queryable.Min``2(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}})">
  774. <summary>Invokes a projection function on each element of a generic <see cref="T:System.Linq.IQueryable`1" /> and returns the minimum resulting value.</summary>
  775. <returns>The minimum value in the sequence.</returns>
  776. <param name="source">A sequence of values to determine the minimum of.</param>
  777. <param name="selector">A projection function to apply to each element.</param>
  778. <typeparam name="TSource">The type of the elements of <paramref name="source" />.</typeparam>
  779. <typeparam name="TResult">The type of the value returned by the function represented by <paramref name="selector" />.</typeparam>
  780. <exception cref="T:System.ArgumentNullException">
  781. <paramref name="source" /> or <paramref name="selector" /> is null.</exception>
  782. </member>
  783. <member name="M:System.Linq.Queryable.OfType``1(System.Linq.IQueryable)">
  784. <summary>Filters the elements of an <see cref="T:System.Linq.IQueryable" /> based on a specified type.</summary>
  785. <returns>A collection that contains the elements from <paramref name="source" /> that have type <paramref name="TResult" />.</returns>
  786. <param name="source">An <see cref="T:System.Linq.IQueryable" /> whose elements to filter.</param>
  787. <typeparam name="TResult">The type to filter the elements of the sequence on.</typeparam>
  788. <exception cref="T:System.ArgumentNullException">
  789. <paramref name="source" /> is null.</exception>
  790. </member>
  791. <member name="M:System.Linq.Queryable.OrderBy``2(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}})">
  792. <summary>Sorts the elements of a sequence in ascending order according to a key.</summary>
  793. <returns>An <see cref="T:System.Linq.IOrderedQueryable`1" /> whose elements are sorted according to a key.</returns>
  794. <param name="source">A sequence of values to order.</param>
  795. <param name="keySelector">A function to extract a key from an element.</param>
  796. <typeparam name="TSource">The type of the elements of <paramref name="source" />.</typeparam>
  797. <typeparam name="TKey">The type of the key returned by the function that is represented by <paramref name="keySelector" />.</typeparam>
  798. <exception cref="T:System.ArgumentNullException">
  799. <paramref name="source" /> or <paramref name="keySelector" /> is null.</exception>
  800. </member>
  801. <member name="M:System.Linq.Queryable.OrderBy``2(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}},System.Collections.Generic.IComparer{``1})">
  802. <summary>Sorts the elements of a sequence in ascending order by using a specified comparer.</summary>
  803. <returns>An <see cref="T:System.Linq.IOrderedQueryable`1" /> whose elements are sorted according to a key.</returns>
  804. <param name="source">A sequence of values to order.</param>
  805. <param name="keySelector">A function to extract a key from an element.</param>
  806. <param name="comparer">An <see cref="T:System.Collections.Generic.IComparer`1" /> to compare keys.</param>
  807. <typeparam name="TSource">The type of the elements of <paramref name="source" />.</typeparam>
  808. <typeparam name="TKey">The type of the key returned by the function that is represented by <paramref name="keySelector" />.</typeparam>
  809. <exception cref="T:System.ArgumentNullException">
  810. <paramref name="source" /> or <paramref name="keySelector" /> or <paramref name="comparer" /> is null.</exception>
  811. </member>
  812. <member name="M:System.Linq.Queryable.OrderByDescending``2(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}})">
  813. <summary>Sorts the elements of a sequence in descending order according to a key.</summary>
  814. <returns>An <see cref="T:System.Linq.IOrderedQueryable`1" /> whose elements are sorted in descending order according to a key.</returns>
  815. <param name="source">A sequence of values to order.</param>
  816. <param name="keySelector">A function to extract a key from an element.</param>
  817. <typeparam name="TSource">The type of the elements of <paramref name="source" />.</typeparam>
  818. <typeparam name="TKey">The type of the key returned by the function that is represented by <paramref name="keySelector" />.</typeparam>
  819. <exception cref="T:System.ArgumentNullException">
  820. <paramref name="source" /> or <paramref name="keySelector" /> is null.</exception>
  821. </member>
  822. <member name="M:System.Linq.Queryable.OrderByDescending``2(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}},System.Collections.Generic.IComparer{``1})">
  823. <summary>Sorts the elements of a sequence in descending order by using a specified comparer.</summary>
  824. <returns>An <see cref="T:System.Linq.IOrderedQueryable`1" /> whose elements are sorted in descending order according to a key.</returns>
  825. <param name="source">A sequence of values to order.</param>
  826. <param name="keySelector">A function to extract a key from an element.</param>
  827. <param name="comparer">An <see cref="T:System.Collections.Generic.IComparer`1" /> to compare keys.</param>
  828. <typeparam name="TSource">The type of the elements of <paramref name="source" />.</typeparam>
  829. <typeparam name="TKey">The type of the key returned by the function that is represented by <paramref name="keySelector" />.</typeparam>
  830. <exception cref="T:System.ArgumentNullException">
  831. <paramref name="source" /> or <paramref name="keySelector" /> or <paramref name="comparer" /> is null.</exception>
  832. </member>
  833. <member name="M:System.Linq.Queryable.Reverse``1(System.Linq.IQueryable{``0})">
  834. <summary>Inverts the order of the elements in a sequence.</summary>
  835. <returns>An <see cref="T:System.Linq.IQueryable`1" /> whose elements correspond to those of the input sequence in reverse order.</returns>
  836. <param name="source">A sequence of values to reverse.</param>
  837. <typeparam name="TSource">The type of the elements of <paramref name="source" />.</typeparam>
  838. <exception cref="T:System.ArgumentNullException">
  839. <paramref name="source" /> is null.</exception>
  840. </member>
  841. <member name="M:System.Linq.Queryable.Select``2(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}})">
  842. <summary>Projects each element of a sequence into a new form.</summary>
  843. <returns>An <see cref="T:System.Linq.IQueryable`1" /> whose elements are the result of invoking a projection function on each element of <paramref name="source" />.</returns>
  844. <param name="source">A sequence of values to project.</param>
  845. <param name="selector">A projection function to apply to each element.</param>
  846. <typeparam name="TSource">The type of the elements of <paramref name="source" />.</typeparam>
  847. <typeparam name="TResult">The type of the value returned by the function represented by <paramref name="selector" />.</typeparam>
  848. <exception cref="T:System.ArgumentNullException">
  849. <paramref name="source" /> or <paramref name="selector" /> is null.</exception>
  850. </member>
  851. <member name="M:System.Linq.Queryable.Select``2(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Int32,``1}})">
  852. <summary>Projects each element of a sequence into a new form by incorporating the element's index.</summary>
  853. <returns>An <see cref="T:System.Linq.IQueryable`1" /> whose elements are the result of invoking a projection function on each element of <paramref name="source" />.</returns>
  854. <param name="source">A sequence of values to project.</param>
  855. <param name="selector">A projection function to apply to each element.</param>
  856. <typeparam name="TSource">The type of the elements of <paramref name="source" />.</typeparam>
  857. <typeparam name="TResult">The type of the value returned by the function represented by <paramref name="selector" />.</typeparam>
  858. <exception cref="T:System.ArgumentNullException">
  859. <paramref name="source" /> or <paramref name="selector" /> is null.</exception>
  860. </member>
  861. <member name="M:System.Linq.Queryable.SelectMany``3(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Collections.Generic.IEnumerable{``1}}},System.Linq.Expressions.Expression{System.Func{``0,``1,``2}})">
  862. <summary>Projects each element of a sequence to an <see cref="T:System.Collections.Generic.IEnumerable`1" /> and invokes a result selector function on each element therein. The resulting values from each intermediate sequence are combined into a single, one-dimensional sequence and returned.</summary>
  863. <returns>An <see cref="T:System.Linq.IQueryable`1" /> whose elements are the result of invoking the one-to-many projection function <paramref name="collectionSelector" /> on each element of <paramref name="source" /> and then mapping each of those sequence elements and their corresponding <paramref name="source" /> element to a result element.</returns>
  864. <param name="source">A sequence of values to project.</param>
  865. <param name="collectionSelector">A projection function to apply to each element of the input sequence.</param>
  866. <param name="resultSelector">A projection function to apply to each element of each intermediate sequence.</param>
  867. <typeparam name="TSource">The type of the elements of <paramref name="source" />.</typeparam>
  868. <typeparam name="TCollection">The type of the intermediate elements collected by the function represented by <paramref name="collectionSelector" />.</typeparam>
  869. <typeparam name="TResult">The type of the elements of the resulting sequence.</typeparam>
  870. <exception cref="T:System.ArgumentNullException">
  871. <paramref name="source" /> or <paramref name="collectionSelector" /> or <paramref name="resultSelector" /> is null.</exception>
  872. </member>
  873. <member name="M:System.Linq.Queryable.SelectMany``2(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Collections.Generic.IEnumerable{``1}}})">
  874. <summary>Projects each element of a sequence to an <see cref="T:System.Collections.Generic.IEnumerable`1" /> and combines the resulting sequences into one sequence.</summary>
  875. <returns>An <see cref="T:System.Linq.IQueryable`1" /> whose elements are the result of invoking a one-to-many projection function on each element of the input sequence.</returns>
  876. <param name="source">A sequence of values to project.</param>
  877. <param name="selector">A projection function to apply to each element.</param>
  878. <typeparam name="TSource">The type of the elements of <paramref name="source" />.</typeparam>
  879. <typeparam name="TResult">The type of the elements of the sequence returned by the function represented by <paramref name="selector" />.</typeparam>
  880. <exception cref="T:System.ArgumentNullException">
  881. <paramref name="source" /> or <paramref name="selector" /> is null.</exception>
  882. </member>
  883. <member name="M:System.Linq.Queryable.SelectMany``3(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Int32,System.Collections.Generic.IEnumerable{``1}}},System.Linq.Expressions.Expression{System.Func{``0,``1,``2}})">
  884. <summary>Projects each element of a sequence to an <see cref="T:System.Collections.Generic.IEnumerable`1" /> that incorporates the index of the source element that produced it. A result selector function is invoked on each element of each intermediate sequence, and the resulting values are combined into a single, one-dimensional sequence and returned.</summary>
  885. <returns>An <see cref="T:System.Linq.IQueryable`1" /> whose elements are the result of invoking the one-to-many projection function <paramref name="collectionSelector" /> on each element of <paramref name="source" /> and then mapping each of those sequence elements and their corresponding <paramref name="source" /> element to a result element.</returns>
  886. <param name="source">A sequence of values to project.</param>
  887. <param name="collectionSelector">A projection function to apply to each element of the input sequence; the second parameter of this function represents the index of the source element.</param>
  888. <param name="resultSelector">A projection function to apply to each element of each intermediate sequence.</param>
  889. <typeparam name="TSource">The type of the elements of <paramref name="source" />.</typeparam>
  890. <typeparam name="TCollection">The type of the intermediate elements collected by the function represented by <paramref name="collectionSelector" />.</typeparam>
  891. <typeparam name="TResult">The type of the elements of the resulting sequence.</typeparam>
  892. <exception cref="T:System.ArgumentNullException">
  893. <paramref name="source" /> or <paramref name="collectionSelector" /> or <paramref name="resultSelector" /> is null.</exception>
  894. </member>
  895. <member name="M:System.Linq.Queryable.SelectMany``2(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Int32,System.Collections.Generic.IEnumerable{``1}}})">
  896. <summary>Projects each element of a sequence to an <see cref="T:System.Collections.Generic.IEnumerable`1" /> and combines the resulting sequences into one sequence. The index of each source element is used in the projected form of that element.</summary>
  897. <returns>An <see cref="T:System.Linq.IQueryable`1" /> whose elements are the result of invoking a one-to-many projection function on each element of the input sequence.</returns>
  898. <param name="source">A sequence of values to project.</param>
  899. <param name="selector">A projection function to apply to each element; the second parameter of this function represents the index of the source element.</param>
  900. <typeparam name="TSource">The type of the elements of <paramref name="source" />.</typeparam>
  901. <typeparam name="TResult">The type of the elements of the sequence returned by the function represented by <paramref name="selector" />.</typeparam>
  902. <exception cref="T:System.ArgumentNullException">
  903. <paramref name="source" /> or <paramref name="selector" /> is null.</exception>
  904. </member>
  905. <member name="M:System.Linq.Queryable.SequenceEqual``1(System.Linq.IQueryable{``0},System.Collections.Generic.IEnumerable{``0})">
  906. <summary>Determines whether two sequences are equal by using the default equality comparer to compare elements.</summary>
  907. <returns>true if the two source sequences are of equal length and their corresponding elements compare equal; otherwise, false.</returns>
  908. <param name="source1">An <see cref="T:System.Linq.IQueryable`1" /> whose elements to compare to those of <paramref name="source2" />.</param>
  909. <param name="source2">An <see cref="T:System.Collections.Generic.IEnumerable`1" /> whose elements to compare to those of the first sequence.</param>
  910. <typeparam name="TSource">The type of the elements of the input sequences.</typeparam>
  911. <exception cref="T:System.ArgumentNullException">
  912. <paramref name="source1" /> or <paramref name="source2" /> is null.</exception>
  913. </member>
  914. <member name="M:System.Linq.Queryable.SequenceEqual``1(System.Linq.IQueryable{``0},System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEqualityComparer{``0})">
  915. <summary>Determines whether two sequences are equal by using a specified <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> to compare elements.</summary>
  916. <returns>true if the two source sequences are of equal length and their corresponding elements compare equal; otherwise, false.</returns>
  917. <param name="source1">An <see cref="T:System.Linq.IQueryable`1" /> whose elements to compare to those of <paramref name="source2" />.</param>
  918. <param name="source2">An <see cref="T:System.Collections.Generic.IEnumerable`1" /> whose elements to compare to those of the first sequence.</param>
  919. <param name="comparer">An <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> to use to compare elements.</param>
  920. <typeparam name="TSource">The type of the elements of the input sequences.</typeparam>
  921. <exception cref="T:System.ArgumentNullException">
  922. <paramref name="source1" /> or <paramref name="source2" /> is null.</exception>
  923. </member>
  924. <member name="M:System.Linq.Queryable.Single``1(System.Linq.IQueryable{``0})">
  925. <summary>Returns the only element of a sequence, and throws an exception if there is not exactly one element in the sequence.</summary>
  926. <returns>The single element of the input sequence.</returns>
  927. <param name="source">An <see cref="T:System.Linq.IQueryable`1" /> to return the single element of.</param>
  928. <typeparam name="TSource">The type of the elements of <paramref name="source" />.</typeparam>
  929. <exception cref="T:System.ArgumentNullException">
  930. <paramref name="source" /> is null.</exception>
  931. <exception cref="T:System.InvalidOperationException">
  932. <paramref name="source" /> has more than one element.</exception>
  933. </member>
  934. <member name="M:System.Linq.Queryable.Single``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}})">
  935. <summary>Returns the only element of a sequence that satisfies a specified condition, and throws an exception if more than one such element exists.</summary>
  936. <returns>The single element of the input sequence that satisfies the condition in <paramref name="predicate" />.</returns>
  937. <param name="source">An <see cref="T:System.Linq.IQueryable`1" /> to return a single element from.</param>
  938. <param name="predicate">A function to test an element for a condition.</param>
  939. <typeparam name="TSource">The type of the elements of <paramref name="source" />.</typeparam>
  940. <exception cref="T:System.ArgumentNullException">
  941. <paramref name="source" /> or <paramref name="predicate" /> is null.</exception>
  942. <exception cref="T:System.InvalidOperationException">No element satisfies the condition in <paramref name="predicate" />.-or-More than one element satisfies the condition in <paramref name="predicate" />.-or-The source sequence is empty.</exception>
  943. </member>
  944. <member name="M:System.Linq.Queryable.SingleOrDefault``1(System.Linq.IQueryable{``0})">
  945. <summary>Returns the only element of a sequence, or a default value if the sequence is empty; this method throws an exception if there is more than one element in the sequence.</summary>
  946. <returns>The single element of the input sequence, or default(<paramref name="TSource" />) if the sequence contains no elements.</returns>
  947. <param name="source">An <see cref="T:System.Linq.IQueryable`1" /> to return the single element of.</param>
  948. <typeparam name="TSource">The type of the elements of <paramref name="source" />.</typeparam>
  949. <exception cref="T:System.ArgumentNullException">
  950. <paramref name="source" /> is null.</exception>
  951. <exception cref="T:System.InvalidOperationException">
  952. <paramref name="source" /> has more than one element.</exception>
  953. </member>
  954. <member name="M:System.Linq.Queryable.SingleOrDefault``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}})">
  955. <summary>Returns the only element of a sequence that satisfies a specified condition or a default value if no such element exists; this method throws an exception if more than one element satisfies the condition.</summary>
  956. <returns>The single element of the input sequence that satisfies the condition in <paramref name="predicate" />, or default(<paramref name="TSource" />) if no such element is found.</returns>
  957. <param name="source">An <see cref="T:System.Linq.IQueryable`1" /> to return a single element from.</param>
  958. <param name="predicate">A function to test an element for a condition.</param>
  959. <typeparam name="TSource">The type of the elements of <paramref name="source" />.</typeparam>
  960. <exception cref="T:System.ArgumentNullException">
  961. <paramref name="source" /> or <paramref name="predicate" /> is null.</exception>
  962. <exception cref="T:System.InvalidOperationException">More than one element satisfies the condition in <paramref name="predicate" />.</exception>
  963. </member>
  964. <member name="M:System.Linq.Queryable.Skip``1(System.Linq.IQueryable{``0},System.Int32)">
  965. <summary>Bypasses a specified number of elements in a sequence and then returns the remaining elements.</summary>
  966. <returns>An <see cref="T:System.Linq.IQueryable`1" /> that contains elements that occur after the specified index in the input sequence.</returns>
  967. <param name="source">An <see cref="T:System.Linq.IQueryable`1" /> to return elements from.</param>
  968. <param name="count">The number of elements to skip before returning the remaining elements.</param>
  969. <typeparam name="TSource">The type of the elements of <paramref name="source" />.</typeparam>
  970. <exception cref="T:System.ArgumentNullException">
  971. <paramref name="source" /> is null.</exception>
  972. </member>
  973. <member name="M:System.Linq.Queryable.SkipWhile``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}})">
  974. <summary>Bypasses elements in a sequence as long as a specified condition is true and then returns the remaining elements.</summary>
  975. <returns>An <see cref="T:System.Linq.IQueryable`1" /> that contains elements from <paramref name="source" /> starting at the first element in the linear series that does not pass the test specified by <paramref name="predicate" />.</returns>
  976. <param name="source">An <see cref="T:System.Linq.IQueryable`1" /> to return elements from.</param>
  977. <param name="predicate">A function to test each element for a condition.</param>
  978. <typeparam name="TSource">The type of the elements of <paramref name="source" />.</typeparam>
  979. <exception cref="T:System.ArgumentNullException">
  980. <paramref name="source" /> or <paramref name="predicate" /> is null.</exception>
  981. </member>
  982. <member name="M:System.Linq.Queryable.SkipWhile``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Int32,System.Boolean}})">
  983. <summary>Bypasses elements in a sequence as long as a specified condition is true and then returns the remaining elements. The element's index is used in the logic of the predicate function.</summary>
  984. <returns>An <see cref="T:System.Linq.IQueryable`1" /> that contains elements from <paramref name="source" /> starting at the first element in the linear series that does not pass the test specified by <paramref name="predicate" />.</returns>
  985. <param name="source">An <see cref="T:System.Linq.IQueryable`1" /> to return elements from.</param>
  986. <param name="predicate">A function to test each element for a condition; the second parameter of this function represents the index of the source element.</param>
  987. <typeparam name="TSource">The type of the elements of <paramref name="source" />.</typeparam>
  988. <exception cref="T:System.ArgumentNullException">
  989. <paramref name="source" /> or <paramref name="predicate" /> is null.</exception>
  990. </member>
  991. <member name="M:System.Linq.Queryable.Sum(System.Linq.IQueryable{System.Decimal})">
  992. <summary>Computes the sum of a sequence of <see cref="T:System.Decimal" /> values.</summary>
  993. <returns>The sum of the values in the sequence.</returns>
  994. <param name="source">A sequence of <see cref="T:System.Decimal" /> values to calculate the sum of.</param>
  995. <exception cref="T:System.ArgumentNullException">
  996. <paramref name="source" /> is null.</exception>
  997. <exception cref="T:System.OverflowException">The sum is larger than <see cref="F:System.Decimal.MaxValue" />.</exception>
  998. </member>
  999. <member name="M:System.Linq.Queryable.Sum(System.Linq.IQueryable{System.Double})">
  1000. <summary>Computes the sum of a sequence of <see cref="T:System.Double" /> values.</summary>
  1001. <returns>The sum of the values in the sequence.</returns>
  1002. <param name="source">A sequence of <see cref="T:System.Double" /> values to calculate the sum of.</param>
  1003. <exception cref="T:System.ArgumentNullException">
  1004. <paramref name="source" /> is null.</exception>
  1005. </member>
  1006. <member name="M:System.Linq.Queryable.Sum(System.Linq.IQueryable{System.Int32})">
  1007. <summary>Computes the sum of a sequence of <see cref="T:System.Int32" /> values.</summary>
  1008. <returns>The sum of the values in the sequence.</returns>
  1009. <param name="source">A sequence of <see cref="T:System.Int32" /> values to calculate the sum of.</param>
  1010. <exception cref="T:System.ArgumentNullException">
  1011. <paramref name="source" /> is null.</exception>
  1012. <exception cref="T:System.OverflowException">The sum is larger than <see cref="F:System.Int32.MaxValue" />.</exception>
  1013. </member>
  1014. <member name="M:System.Linq.Queryable.Sum(System.Linq.IQueryable{System.Int64})">
  1015. <summary>Computes the sum of a sequence of <see cref="T:System.Int64" /> values.</summary>
  1016. <returns>The sum of the values in the sequence.</returns>
  1017. <param name="source">A sequence of <see cref="T:System.Int64" /> values to calculate the sum of.</param>
  1018. <exception cref="T:System.ArgumentNullException">
  1019. <paramref name="source" /> is null.</exception>
  1020. <exception cref="T:System.OverflowException">The sum is larger than <see cref="F:System.Int64.MaxValue" />.</exception>
  1021. </member>
  1022. <member name="M:System.Linq.Queryable.Sum(System.Linq.IQueryable{System.Nullable{System.Decimal}})">
  1023. <summary>Computes the sum of a sequence of nullable <see cref="T:System.Decimal" /> values.</summary>
  1024. <returns>The sum of the values in the sequence.</returns>
  1025. <param name="source">A sequence of nullable <see cref="T:System.Decimal" /> values to calculate the sum of.</param>
  1026. <exception cref="T:System.ArgumentNullException">
  1027. <paramref name="source" /> is null.</exception>
  1028. <exception cref="T:System.OverflowException">The sum is larger than <see cref="F:System.Decimal.MaxValue" />.</exception>
  1029. </member>
  1030. <member name="M:System.Linq.Queryable.Sum(System.Linq.IQueryable{System.Nullable{System.Double}})">
  1031. <summary>Computes the sum of a sequence of nullable <see cref="T:System.Double" /> values.</summary>
  1032. <returns>The sum of the values in the sequence.</returns>
  1033. <param name="source">A sequence of nullable <see cref="T:System.Double" /> values to calculate the sum of.</param>
  1034. <exception cref="T:System.ArgumentNullException">
  1035. <paramref name="source" /> is null.</exception>
  1036. </member>
  1037. <member name="M:System.Linq.Queryable.Sum(System.Linq.IQueryable{System.Nullable{System.Int32}})">
  1038. <summary>Computes the sum of a sequence of nullable <see cref="T:System.Int32" /> values.</summary>
  1039. <returns>The sum of the values in the sequence.</returns>
  1040. <param name="source">A sequence of nullable <see cref="T:System.Int32" /> values to calculate the sum of.</param>
  1041. <exception cref="T:System.ArgumentNullException">
  1042. <paramref name="source" /> is null.</exception>
  1043. <exception cref="T:System.OverflowException">The sum is larger than <see cref="F:System.Int32.MaxValue" />.</exception>
  1044. </member>
  1045. <member name="M:System.Linq.Queryable.Sum(System.Linq.IQueryable{System.Nullable{System.Int64}})">
  1046. <summary>Computes the sum of a sequence of nullable <see cref="T:System.Int64" /> values.</summary>
  1047. <returns>The sum of the values in the sequence.</returns>
  1048. <param name="source">A sequence of nullable <see cref="T:System.Int64" /> values to calculate the sum of.</param>
  1049. <exception cref="T:System.ArgumentNullException">
  1050. <paramref name="source" /> is null.</exception>
  1051. <exception cref="T:System.OverflowException">The sum is larger than <see cref="F:System.Int64.MaxValue" />.</exception>
  1052. </member>
  1053. <member name="M:System.Linq.Queryable.Sum(System.Linq.IQueryable{System.Nullable{System.Single}})">
  1054. <summary>Computes the sum of a sequence of nullable <see cref="T:System.Single" /> values.</summary>
  1055. <returns>The sum of the values in the sequence.</returns>
  1056. <param name="source">A sequence of nullable <see cref="T:System.Single" /> values to calculate the sum of.</param>
  1057. <exception cref="T:System.ArgumentNullException">
  1058. <paramref name="source" /> is null.</exception>
  1059. </member>
  1060. <member name="M:System.Linq.Queryable.Sum(System.Linq.IQueryable{System.Single})">
  1061. <summary>Computes the sum of a sequence of <see cref="T:System.Single" /> values.</summary>
  1062. <returns>The sum of the values in the sequence.</returns>
  1063. <param name="source">A sequence of <see cref="T:System.Single" /> values to calculate the sum of.</param>
  1064. <exception cref="T:System.ArgumentNullException">
  1065. <paramref name="source" /> is null.</exception>
  1066. </member>
  1067. <member name="M:System.Linq.Queryable.Sum``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Decimal}})">
  1068. <summary>Computes the sum of the sequence of <see cref="T:System.Decimal" /> values that is obtained by invoking a projection function on each element of the input sequence.</summary>
  1069. <returns>The sum of the projected values.</returns>
  1070. <param name="source">A sequence of values of type <paramref name="TSource" />.</param>
  1071. <param name="selector">A projection function to apply to each element.</param>
  1072. <typeparam name="TSource">The type of the elements of <paramref name="source" />.</typeparam>
  1073. <exception cref="T:System.ArgumentNullException">
  1074. <paramref name="source" /> or <paramref name="selector" /> is null.</exception>
  1075. <exception cref="T:System.OverflowException">The sum is larger than <see cref="F:System.Decimal.MaxValue" />.</exception>
  1076. </member>
  1077. <member name="M:System.Linq.Queryable.Sum``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Double}})">
  1078. <summary>Computes the sum of the sequence of <see cref="T:System.Double" /> values that is obtained by invoking a projection function on each element of the input sequence.</summary>
  1079. <returns>The sum of the projected values.</returns>
  1080. <param name="source">A sequence of values of type <paramref name="TSource" />.</param>
  1081. <param name="selector">A projection function to apply to each element.</param>
  1082. <typeparam name="TSource">The type of the elements of <paramref name="source" />.</typeparam>
  1083. <exception cref="T:System.ArgumentNullException">
  1084. <paramref name="source" /> or <paramref name="selector" /> is null.</exception>
  1085. </member>
  1086. <member name="M:System.Linq.Queryable.Sum``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Int32}})">
  1087. <summary>Computes the sum of the sequence of <see cref="T:System.Int32" /> values that is obtained by invoking a projection function on each element of the input sequence.</summary>
  1088. <returns>The sum of the projected values.</returns>
  1089. <param name="source">A sequence of values of type <paramref name="TSource" />.</param>
  1090. <param name="selector">A projection function to apply to each element.</param>
  1091. <typeparam name="TSource">The type of the elements of <paramref name="source" />.</typeparam>
  1092. <exception cref="T:System.ArgumentNullException">
  1093. <paramref name="source" /> or <paramref name="selector" /> is null.</exception>
  1094. <exception cref="T:System.OverflowException">The sum is larger than <see cref="F:System.Int32.MaxValue" />.</exception>
  1095. </member>
  1096. <member name="M:System.Linq.Queryable.Sum``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Int64}})">
  1097. <summary>Computes the sum of the sequence of <see cref="T:System.Int64" /> values that is obtained by invoking a projection function on each element of the input sequence.</summary>
  1098. <returns>The sum of the projected values.</returns>
  1099. <param name="source">A sequence of values of type <paramref name="TSource" />.</param>
  1100. <param name="selector">A projection function to apply to each element.</param>
  1101. <typeparam name="TSource">The type of the elements of <paramref name="source" />.</typeparam>
  1102. <exception cref="T:System.ArgumentNullException">
  1103. <paramref name="source" /> or <paramref name="selector" /> is null.</exception>
  1104. <exception cref="T:System.OverflowException">The sum is larger than <see cref="F:System.Int64.MaxValue" />.</exception>
  1105. </member>
  1106. <member name="M:System.Linq.Queryable.Sum``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Nullable{System.Decimal}}})">
  1107. <summary>Computes the sum of the sequence of nullable <see cref="T:System.Decimal" /> values that is obtained by invoking a projection function on each element of the input sequence.</summary>
  1108. <returns>The sum of the projected values.</returns>
  1109. <param name="source">A sequence of values of type <paramref name="TSource" />.</param>
  1110. <param name="selector">A projection function to apply to each element.</param>
  1111. <typeparam name="TSource">The type of the elements of <paramref name="source" />.</typeparam>
  1112. <exception cref="T:System.ArgumentNullException">
  1113. <paramref name="source" /> or <paramref name="selector" /> is null.</exception>
  1114. <exception cref="T:System.OverflowException">The sum is larger than <see cref="F:System.Decimal.MaxValue" />.</exception>
  1115. </member>
  1116. <member name="M:System.Linq.Queryable.Sum``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Nullable{System.Double}}})">
  1117. <summary>Computes the sum of the sequence of nullable <see cref="T:System.Double" /> values that is obtained by invoking a projection function on each element of the input sequence.</summary>
  1118. <returns>The sum of the projected values.</returns>
  1119. <param name="source">A sequence of values of type <paramref name="TSource" />.</param>
  1120. <param name="selector">A projection function to apply to each element.</param>
  1121. <typeparam name="TSource">The type of the elements of <paramref name="source" />.</typeparam>
  1122. <exception cref="T:System.ArgumentNullException">
  1123. <paramref name="source" /> or <paramref name="selector" /> is null.</exception>
  1124. </member>
  1125. <member name="M:System.Linq.Queryable.Sum``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Nullable{System.Int32}}})">
  1126. <summary>Computes the sum of the sequence of nullable <see cref="T:System.Int32" /> values that is obtained by invoking a projection function on each element of the input sequence.</summary>
  1127. <returns>The sum of the projected values.</returns>
  1128. <param name="source">A sequence of values of type <paramref name="TSource" />.</param>
  1129. <param name="selector">A projection function to apply to each element.</param>
  1130. <typeparam name="TSource">The type of the elements of <paramref name="source" />.</typeparam>
  1131. <exception cref="T:System.ArgumentNullException">
  1132. <paramref name="source" /> or <paramref name="selector" /> is null.</exception>
  1133. <exception cref="T:System.OverflowException">The sum is larger than <see cref="F:System.Int32.MaxValue" />.</exception>
  1134. </member>
  1135. <member name="M:System.Linq.Queryable.Sum``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Nullable{System.Int64}}})">
  1136. <summary>Computes the sum of the sequence of nullable <see cref="T:System.Int64" /> values that is obtained by invoking a projection function on each element of the input sequence.</summary>
  1137. <returns>The sum of the projected values.</returns>
  1138. <param name="source">A sequence of values of type <paramref name="TSource" />.</param>
  1139. <param name="selector">A projection function to apply to each element.</param>
  1140. <typeparam name="TSource">The type of the elements of <paramref name="source" />.</typeparam>
  1141. <exception cref="T:System.ArgumentNullException">
  1142. <paramref name="source" /> or <paramref name="selector" /> is null.</exception>
  1143. <exception cref="T:System.OverflowException">The sum is larger than <see cref="F:System.Int64.MaxValue" />.</exception>
  1144. </member>
  1145. <member name="M:System.Linq.Queryable.Sum``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Nullable{System.Single}}})">
  1146. <summary>Computes the sum of the sequence of nullable <see cref="T:System.Single" /> values that is obtained by invoking a projection function on each element of the input sequence.</summary>
  1147. <returns>The sum of the projected values.</returns>
  1148. <param name="source">A sequence of values of type <paramref name="TSource" />.</param>
  1149. <param name="selector">A projection function to apply to each element.</param>
  1150. <typeparam name="TSource">The type of the elements of <paramref name="source" />.</typeparam>
  1151. <exception cref="T:System.ArgumentNullException">
  1152. <paramref name="source" /> or <paramref name="selector" /> is null.</exception>
  1153. </member>
  1154. <member name="M:System.Linq.Queryable.Sum``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Single}})">
  1155. <summary>Computes the sum of the sequence of <see cref="T:System.Single" /> values that is obtained by invoking a projection function on each element of the input sequence.</summary>
  1156. <returns>The sum of the projected values.</returns>
  1157. <param name="source">A sequence of values of type <paramref name="TSource" />.</param>
  1158. <param name="selector">A projection function to apply to each element.</param>
  1159. <typeparam name="TSource">The type of the elements of <paramref name="source" />.</typeparam>
  1160. <exception cref="T:System.ArgumentNullException">
  1161. <paramref name="source" /> or <paramref name="selector" /> is null.</exception>
  1162. </member>
  1163. <member name="M:System.Linq.Queryable.Take``1(System.Linq.IQueryable{``0},System.Int32)">
  1164. <summary>Returns a specified number of contiguous elements from the start of a sequence.</summary>
  1165. <returns>An <see cref="T:System.Linq.IQueryable`1" /> that contains the specified number of elements from the start of <paramref name="source" />.</returns>
  1166. <param name="source">The sequence to return elements from.</param>
  1167. <param name="count">The number of elements to return.</param>
  1168. <typeparam name="TSource">The type of the elements of <paramref name="source" />.</typeparam>
  1169. <exception cref="T:System.ArgumentNullException">
  1170. <paramref name="source" /> is null.</exception>
  1171. </member>
  1172. <member name="M:System.Linq.Queryable.TakeWhile``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}})">
  1173. <summary>Returns elements from a sequence as long as a specified condition is true.</summary>
  1174. <returns>An <see cref="T:System.Linq.IQueryable`1" /> that contains elements from the input sequence occurring before the element at which the test specified by <paramref name="predicate" /> no longer passes.</returns>
  1175. <param name="source">The sequence to return elements from.</param>
  1176. <param name="predicate">A function to test each element for a condition.</param>
  1177. <typeparam name="TSource">The type of the elements of <paramref name="source" />.</typeparam>
  1178. <exception cref="T:System.ArgumentNullException">
  1179. <paramref name="source" /> or <paramref name="predicate" /> is null.</exception>
  1180. </member>
  1181. <member name="M:System.Linq.Queryable.TakeWhile``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Int32,System.Boolean}})">
  1182. <summary>Returns elements from a sequence as long as a specified condition is true. The element's index is used in the logic of the predicate function.</summary>
  1183. <returns>An <see cref="T:System.Linq.IQueryable`1" /> that contains elements from the input sequence occurring before the element at which the test specified by <paramref name="predicate" /> no longer passes.</returns>
  1184. <param name="source">The sequence to return elements from.</param>
  1185. <param name="predicate">A function to test each element for a condition; the second parameter of the function represents the index of the element in the source sequence.</param>
  1186. <typeparam name="TSource">The type of the elements of <paramref name="source" />.</typeparam>
  1187. <exception cref="T:System.ArgumentNullException">
  1188. <paramref name="source" /> or <paramref name="predicate" /> is null.</exception>
  1189. </member>
  1190. <member name="M:System.Linq.Queryable.ThenBy``2(System.Linq.IOrderedQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}})">
  1191. <summary>Performs a subsequent ordering of the elements in a sequence in ascending order according to a key.</summary>
  1192. <returns>An <see cref="T:System.Linq.IOrderedQueryable`1" /> whose elements are sorted according to a key.</returns>
  1193. <param name="source">An <see cref="T:System.Linq.IOrderedQueryable`1" /> that contains elements to sort.</param>
  1194. <param name="keySelector">A function to extract a key from each element.</param>
  1195. <typeparam name="TSource">The type of the elements of <paramref name="source" />.</typeparam>
  1196. <typeparam name="TKey">The type of the key returned by the function represented by <paramref name="keySelector" />.</typeparam>
  1197. <exception cref="T:System.ArgumentNullException">
  1198. <paramref name="source" /> or <paramref name="keySelector" /> is null.</exception>
  1199. </member>
  1200. <member name="M:System.Linq.Queryable.ThenBy``2(System.Linq.IOrderedQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}},System.Collections.Generic.IComparer{``1})">
  1201. <summary>Performs a subsequent ordering of the elements in a sequence in ascending order by using a specified comparer.</summary>
  1202. <returns>An <see cref="T:System.Linq.IOrderedQueryable`1" /> whose elements are sorted according to a key.</returns>
  1203. <param name="source">An <see cref="T:System.Linq.IOrderedQueryable`1" /> that contains elements to sort.</param>
  1204. <param name="keySelector">A function to extract a key from each element.</param>
  1205. <param name="comparer">An <see cref="T:System.Collections.Generic.IComparer`1" /> to compare keys.</param>
  1206. <typeparam name="TSource">The type of the elements of <paramref name="source" />.</typeparam>
  1207. <typeparam name="TKey">The type of the key returned by the function represented by <paramref name="keySelector" />.</typeparam>
  1208. <exception cref="T:System.ArgumentNullException">
  1209. <paramref name="source" /> or <paramref name="keySelector" /> or <paramref name="comparer" /> is null.</exception>
  1210. </member>
  1211. <member name="M:System.Linq.Queryable.ThenByDescending``2(System.Linq.IOrderedQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}})">
  1212. <summary>Performs a subsequent ordering of the elements in a sequence in descending order, according to a key.</summary>
  1213. <returns>An <see cref="T:System.Linq.IOrderedQueryable`1" /> whose elements are sorted in descending order according to a key.</returns>
  1214. <param name="source">An <see cref="T:System.Linq.IOrderedQueryable`1" /> that contains elements to sort.</param>
  1215. <param name="keySelector">A function to extract a key from each element.</param>
  1216. <typeparam name="TSource">The type of the elements of <paramref name="source" />.</typeparam>
  1217. <typeparam name="TKey">The type of the key returned by the function represented by <paramref name="keySelector" />.</typeparam>
  1218. <exception cref="T:System.ArgumentNullException">
  1219. <paramref name="source" /> or <paramref name="keySelector" /> is null.</exception>
  1220. </member>
  1221. <member name="M:System.Linq.Queryable.ThenByDescending``2(System.Linq.IOrderedQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}},System.Collections.Generic.IComparer{``1})">
  1222. <summary>Performs a subsequent ordering of the elements in a sequence in descending order by using a specified comparer.</summary>
  1223. <returns>A collection whose elements are sorted in descending order according to a key.</returns>
  1224. <param name="source">An <see cref="T:System.Linq.IOrderedQueryable`1" /> that contains elements to sort.</param>
  1225. <param name="keySelector">A function to extract a key from each element.</param>
  1226. <param name="comparer">An <see cref="T:System.Collections.Generic.IComparer`1" /> to compare keys.</param>
  1227. <typeparam name="TSource">The type of the elements of <paramref name="source" />.</typeparam>
  1228. <typeparam name="TKey">The type of the key that is returned by the <paramref name="keySelector" /> function.</typeparam>
  1229. <exception cref="T:System.ArgumentNullException">
  1230. <paramref name="source" /> or <paramref name="keySelector" /> or <paramref name="comparer" /> is null.</exception>
  1231. </member>
  1232. <member name="M:System.Linq.Queryable.Union``1(System.Linq.IQueryable{``0},System.Collections.Generic.IEnumerable{``0})">
  1233. <summary>Produces the set union of two sequences by using the default equality comparer.</summary>
  1234. <returns>An <see cref="T:System.Linq.IQueryable`1" /> that contains the elements from both input sequences, excluding duplicates.</returns>
  1235. <param name="source1">A sequence whose distinct elements form the first set for the union operation.</param>
  1236. <param name="source2">A sequence whose distinct elements form the second set for the union operation.</param>
  1237. <typeparam name="TSource">The type of the elements of the input sequences.</typeparam>
  1238. <exception cref="T:System.ArgumentNullException">
  1239. <paramref name="source1" /> or <paramref name="source2" /> is null.</exception>
  1240. </member>
  1241. <member name="M:System.Linq.Queryable.Union``1(System.Linq.IQueryable{``0},System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEqualityComparer{``0})">
  1242. <summary>Produces the set union of two sequences by using a specified <see cref="T:System.Collections.Generic.IEqualityComparer`1" />.</summary>
  1243. <returns>An <see cref="T:System.Linq.IQueryable`1" /> that contains the elements from both input sequences, excluding duplicates.</returns>
  1244. <param name="source1">A sequence whose distinct elements form the first set for the union operation.</param>
  1245. <param name="source2">A sequence whose distinct elements form the second set for the union operation.</param>
  1246. <param name="comparer">An <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> to compare values.</param>
  1247. <typeparam name="TSource">The type of the elements of the input sequences.</typeparam>
  1248. <exception cref="T:System.ArgumentNullException">
  1249. <paramref name="source1" /> or <paramref name="source2" /> is null.</exception>
  1250. </member>
  1251. <member name="M:System.Linq.Queryable.Where``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}})">
  1252. <summary>Filters a sequence of values based on a predicate.</summary>
  1253. <returns>An <see cref="T:System.Linq.IQueryable`1" /> that contains elements from the input sequence that satisfy the condition specified by <paramref name="predicate" />.</returns>
  1254. <param name="source">An <see cref="T:System.Linq.IQueryable`1" /> to filter.</param>
  1255. <param name="predicate">A function to test each element for a condition.</param>
  1256. <typeparam name="TSource">The type of the elements of <paramref name="source" />.</typeparam>
  1257. <exception cref="T:System.ArgumentNullException">
  1258. <paramref name="source" /> or <paramref name="predicate" /> is null.</exception>
  1259. </member>
  1260. <member name="M:System.Linq.Queryable.Where``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Int32,System.Boolean}})">
  1261. <summary>Filters a sequence of values based on a predicate. Each element's index is used in the logic of the predicate function.</summary>
  1262. <returns>An <see cref="T:System.Linq.IQueryable`1" /> that contains elements from the input sequence that satisfy the condition specified by <paramref name="predicate" />.</returns>
  1263. <param name="source">An <see cref="T:System.Linq.IQueryable`1" /> to filter.</param>
  1264. <param name="predicate">A function to test each element for a condition; the second parameter of the function represents the index of the element in the source sequence.</param>
  1265. <typeparam name="TSource">The type of the elements of <paramref name="source" />.</typeparam>
  1266. <exception cref="T:System.ArgumentNullException">
  1267. <paramref name="source" /> or <paramref name="predicate" /> is null.</exception>
  1268. </member>
  1269. <member name="M:System.Linq.Queryable.Zip``3(System.Linq.IQueryable{``0},System.Collections.Generic.IEnumerable{``1},System.Linq.Expressions.Expression{System.Func{``0,``1,``2}})">
  1270. <summary>Merges two sequences by using the specified predicate function.</summary>
  1271. <returns>An <see cref="T:System.Linq.IQueryable`1" /> that contains merged elements of two input sequences.</returns>
  1272. <param name="source1">The first sequence to merge.</param>
  1273. <param name="source2">The second sequence to merge.</param>
  1274. <param name="resultSelector">A function that specifies how to merge the elements from the two sequences.</param>
  1275. <typeparam name="TFirst">The type of the elements of the first input sequence.</typeparam>
  1276. <typeparam name="TSecond">The type of the elements of the second input sequence.</typeparam>
  1277. <typeparam name="TResult">The type of the elements of the result sequence.</typeparam>
  1278. <exception cref="T:System.ArgumentNullException">
  1279. <paramref name="source1" />or <paramref name="source2 " />is null.</exception>
  1280. </member>
  1281. </members>
  1282. </doc>