| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082 |
- <?xml version="1.0" encoding="utf-8"?>
- <Type Name="Queryable" FullName="System.Linq.Queryable">
- <TypeSignature Language="C#" Value="public static class Queryable" />
- <TypeSignature Language="ILAsm" Value=".class public auto ansi abstract sealed beforefieldinit Queryable extends System.Object" />
- <AssemblyInfo>
- <AssemblyName>System.Core</AssemblyName>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <Base>
- <BaseTypeName>System.Object</BaseTypeName>
- </Base>
- <Interfaces />
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The set of methods declared in the <see cref="T:System.Linq.Queryable" /> class provides an implementation of the standard query operators for querying data sources that implement <see cref="T:System.Linq.IQueryable`1" />. The standard query operators are general purpose methods that follow the vbteclinq pattern and enable you to express traversal, filter, and projection operations over data in any .NET-based programming language.</para>
- <para>The majority of the methods in this class are defined as extension methods that extend the <see cref="T:System.Linq.IQueryable`1" /> type. This means they can be called like an instance method on any object that implements <see cref="T:System.Linq.IQueryable`1" />. These methods that extend <see cref="T:System.Linq.IQueryable`1" /> do not perform any querying directly. Instead, their functionality is to build an <see cref="T:System.Linq.Expressions.Expression" /> object, which is an expression tree that represents the cumulative query. The methods then pass the new expression tree to either the <see cref="M:System.Linq.IQueryProvider.Execute``1(System.Linq.Expressions.Expression)" /> method or the <see cref="M:System.Linq.IQueryProvider.CreateQuery``1(System.Linq.Expressions.Expression)" /> method of the input <see cref="T:System.Linq.IQueryable`1" />. The method that is called depends on whether the <see cref="T:System.Linq.Queryable" /> method returns a singleton value, in which case <see cref="M:System.Linq.IQueryProvider.Execute``1(System.Linq.Expressions.Expression)" /> is called, or has enumerable results, in which case <see cref="M:System.Linq.IQueryProvider.CreateQuery``1(System.Linq.Expressions.Expression)" /> is called.</para>
- <para>The actual query execution on the target data is performed by a class that implements <see cref="T:System.Linq.IQueryable`1" />. The expectation of any <see cref="T:System.Linq.IQueryable`1" /> implementation is that the result of executing an expression tree that was constructed by a <see cref="T:System.Linq.Queryable" /> standard query operator method is equivalent to the result of calling the corresponding method in the <see cref="T:System.Linq.Enumerable" /> class, if the data source were an <see cref="T:System.Collections.Generic.IEnumerable`1" />.</para>
- <para>In addition to the standard query operator methods that operate on <see cref="T:System.Linq.IQueryable`1" /> objects, this class also contains a method, <see cref="Overload:System.Linq.Queryable.AsQueryable" />, which types <see cref="T:System.Collections.IEnumerable" /> objects as <see cref="T:System.Linq.IQueryable" /> objects.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>Provides a set of static (Shared in Visual Basic) methods for querying data structures that implement <see cref="T:System.Linq.IQueryable`1" />.</para>
- </summary>
- </Docs>
- <Members>
- <Member MemberName="Aggregate<TSource>">
- <MemberSignature Language="C#" Value="public static TSource Aggregate<TSource> (this System.Linq.IQueryable<TSource> source, System.Linq.Expressions.Expression<Func<TSource,TSource,TSource>> func);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig !!TSource Aggregate<TSource>(class System.Linq.IQueryable`1<!!TSource> source, class System.Linq.Expressions.Expression`1<class System.Func`3<!!TSource, !!TSource, !!TSource>> func) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>TSource</ReturnType>
- </ReturnValue>
- <TypeParameters>
- <TypeParameter Name="TSource" />
- </TypeParameters>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IQueryable<TSource>" RefType="this" />
- <Parameter Name="func" Type="System.Linq.Expressions.Expression<System.Func<TSource,TSource,TSource>>" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>This method has at least one parameter of type <see cref="T:System.Linq.Expressions.Expression`1" /> whose type argument is one of the <see cref="T:System.Func`2" /> types. For these parameters, you can pass in a lambda expression and it will be compiled to an <see cref="T:System.Linq.Expressions.Expression`1" />.</para>
- <para>The <see cref="M:System.Linq.Queryable.Aggregate``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,``0,``0}})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.Aggregate``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,``0,``0}})" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.Execute``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.Aggregate``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,``0,``0}})" /> depends on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that the specified function, <paramref name="func" />, is applied to each value in the source sequence and the accumulated value is returned. The first value in <paramref name="source" /> is used as the seed value for the accumulated value, which corresponds to the first parameter in <paramref name="func" />.</para>
- <para>To simplify common aggregation operations, the set of standard query operators also includes two counting methods, <see cref="M:System.Linq.Queryable.Count``1(System.Linq.IQueryable{``0})" /> and <see cref="M:System.Linq.Queryable.LongCount``1(System.Linq.IQueryable{``0})" />, and four numeric aggregation methods, namely <see cref="M:System.Linq.Queryable.Max``1(System.Linq.IQueryable{``0})" />, <see cref="M:System.Linq.Queryable.Min``1(System.Linq.IQueryable{``0})" />, <see cref="M:System.Linq.Queryable.Sum(System.Linq.IQueryable{System.Decimal})" />, and <see cref="M:System.Linq.Queryable.Average(System.Linq.IQueryable{System.Decimal})" />.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>Applies an accumulator function over a sequence.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The final accumulator value.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />A sequence to aggregate over.</param>
- <param name="func">
- <attribution license="cc4" from="Microsoft" modified="false" />An accumulator function to apply to each element.</param>
- <typeparam name="TSource">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of <paramref name="source" />.</typeparam>
- </Docs>
- </Member>
- <Member MemberName="Aggregate<TSource,TAccumulate>">
- <MemberSignature Language="C#" Value="public static TAccumulate Aggregate<TSource,TAccumulate> (this System.Linq.IQueryable<TSource> source, TAccumulate seed, System.Linq.Expressions.Expression<Func<TAccumulate,TSource,TAccumulate>> func);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig !!TAccumulate Aggregate<TSource, TAccumulate>(class System.Linq.IQueryable`1<!!TSource> source, !!TAccumulate seed, class System.Linq.Expressions.Expression`1<class System.Func`3<!!TAccumulate, !!TSource, !!TAccumulate>> func) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>TAccumulate</ReturnType>
- </ReturnValue>
- <TypeParameters>
- <TypeParameter Name="TSource" />
- <TypeParameter Name="TAccumulate" />
- </TypeParameters>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IQueryable<TSource>" RefType="this" />
- <Parameter Name="seed" Type="TAccumulate" />
- <Parameter Name="func" Type="System.Linq.Expressions.Expression<System.Func<TAccumulate,TSource,TAccumulate>>" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>This method has at least one parameter of type <see cref="T:System.Linq.Expressions.Expression`1" /> whose type argument is one of the <see cref="T:System.Func`2" /> types. For these parameters, you can pass in a lambda expression and it will be compiled to an <see cref="T:System.Linq.Expressions.Expression`1" />.</para>
- <para>The <see cref="M:System.Linq.Queryable.Aggregate``2(System.Linq.IQueryable{``0},``1,System.Linq.Expressions.Expression{System.Func{``1,``0,``1}})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.Aggregate``2(System.Linq.IQueryable{``0},``1,System.Linq.Expressions.Expression{System.Func{``1,``0,``1}})" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.Execute``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.Aggregate``2(System.Linq.IQueryable{``0},``1,System.Linq.Expressions.Expression{System.Func{``1,``0,``1}})" /> depends on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that the specified function, <paramref name="func" />, is applied to each value in the source sequence and the accumulated value is returned. The <paramref name="seed" /> parameter is used as the seed value for the accumulated value, which corresponds to the first parameter in <paramref name="func" />.</para>
- <para>To simplify common aggregation operations, the set of standard query operators also includes two counting methods, <see cref="M:System.Linq.Queryable.Count``1(System.Linq.IQueryable{``0})" /> and <see cref="M:System.Linq.Queryable.LongCount``1(System.Linq.IQueryable{``0})" />, and four numeric aggregation methods, namely <see cref="M:System.Linq.Queryable.Max``1(System.Linq.IQueryable{``0})" />, <see cref="M:System.Linq.Queryable.Min``1(System.Linq.IQueryable{``0})" />, <see cref="M:System.Linq.Queryable.Sum(System.Linq.IQueryable{System.Decimal})" />, and <see cref="M:System.Linq.Queryable.Average(System.Linq.IQueryable{System.Decimal})" />.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>Applies an accumulator function over a sequence. The specified seed value is used as the initial accumulator value.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The final accumulator value.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />A sequence to aggregate over.</param>
- <param name="seed">
- <attribution license="cc4" from="Microsoft" modified="false" />The initial accumulator value.</param>
- <param name="func">
- <attribution license="cc4" from="Microsoft" modified="false" />An accumulator function to invoke on each element.</param>
- <typeparam name="TSource">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of <paramref name="source" />.</typeparam>
- <typeparam name="TAccumulate">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the accumulator value.</typeparam>
- </Docs>
- </Member>
- <Member MemberName="Aggregate<TSource,TAccumulate,TResult>">
- <MemberSignature Language="C#" Value="public static TResult Aggregate<TSource,TAccumulate,TResult> (this System.Linq.IQueryable<TSource> source, TAccumulate seed, System.Linq.Expressions.Expression<Func<TAccumulate,TSource,TAccumulate>> func, System.Linq.Expressions.Expression<Func<TAccumulate,TResult>> selector);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig !!TResult Aggregate<TSource, TAccumulate, TResult>(class System.Linq.IQueryable`1<!!TSource> source, !!TAccumulate seed, class System.Linq.Expressions.Expression`1<class System.Func`3<!!TAccumulate, !!TSource, !!TAccumulate>> func, class System.Linq.Expressions.Expression`1<class System.Func`2<!!TAccumulate, !!TResult>> selector) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>TResult</ReturnType>
- </ReturnValue>
- <TypeParameters>
- <TypeParameter Name="TSource" />
- <TypeParameter Name="TAccumulate" />
- <TypeParameter Name="TResult" />
- </TypeParameters>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IQueryable<TSource>" RefType="this" />
- <Parameter Name="seed" Type="TAccumulate" />
- <Parameter Name="func" Type="System.Linq.Expressions.Expression<System.Func<TAccumulate,TSource,TAccumulate>>" />
- <Parameter Name="selector" Type="System.Linq.Expressions.Expression<System.Func<TAccumulate,TResult>>" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>This method has at least one parameter of type <see cref="T:System.Linq.Expressions.Expression`1" /> whose type argument is one of the <see cref="T:System.Func`2" /> types. For these parameters, you can pass in a lambda expression and it will be compiled to an <see cref="T:System.Linq.Expressions.Expression`1" />.</para>
- <para>The <see cref="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}})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="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}})" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.Execute``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="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}})" /> depends on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that the specified function, <paramref name="func" />, is applied to each value in the source sequence and the accumulated value is returned. The <paramref name="seed" /> parameter is used as the seed value for the accumulated value, which corresponds to the first parameter in <paramref name="func" />. The final accumulated value is passed to <paramref name="selector" /> to obtain the result value.</para>
- <para>To simplify common aggregation operations, the set of standard query operators also includes two counting methods, <see cref="M:System.Linq.Queryable.Count``1(System.Linq.IQueryable{``0})" /> and <see cref="M:System.Linq.Queryable.LongCount``1(System.Linq.IQueryable{``0})" />, and four numeric aggregation methods, namely <see cref="M:System.Linq.Queryable.Max``1(System.Linq.IQueryable{``0})" />, <see cref="M:System.Linq.Queryable.Min``1(System.Linq.IQueryable{``0})" />, <see cref="M:System.Linq.Queryable.Sum(System.Linq.IQueryable{System.Decimal})" />, and <see cref="M:System.Linq.Queryable.Average(System.Linq.IQueryable{System.Decimal})" />.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>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.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The transformed final accumulator value.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />A sequence to aggregate over.</param>
- <param name="seed">
- <attribution license="cc4" from="Microsoft" modified="false" />The initial accumulator value.</param>
- <param name="func">
- <attribution license="cc4" from="Microsoft" modified="false" />An accumulator function to invoke on each element.</param>
- <param name="selector">
- <attribution license="cc4" from="Microsoft" modified="false" />A function to transform the final accumulator value into the result value.</param>
- <typeparam name="TSource">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of <paramref name="source" />.</typeparam>
- <typeparam name="TAccumulate">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the accumulator value.</typeparam>
- <typeparam name="TResult">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the resulting value.</typeparam>
- </Docs>
- </Member>
- <Member MemberName="All<TSource>">
- <MemberSignature Language="C#" Value="public static bool All<TSource> (this System.Linq.IQueryable<TSource> source, System.Linq.Expressions.Expression<Func<TSource,bool>> predicate);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig bool All<TSource>(class System.Linq.IQueryable`1<!!TSource> source, class System.Linq.Expressions.Expression`1<class System.Func`2<!!TSource, bool>> predicate) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Boolean</ReturnType>
- </ReturnValue>
- <TypeParameters>
- <TypeParameter Name="TSource" />
- </TypeParameters>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IQueryable<TSource>" RefType="this" />
- <Parameter Name="predicate" Type="System.Linq.Expressions.Expression<System.Func<TSource,System.Boolean>>" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>This method has at least one parameter of type <see cref="T:System.Linq.Expressions.Expression`1" /> whose type argument is one of the <see cref="T:System.Func`2" /> types. For these parameters, you can pass in a lambda expression and it will be compiled to an <see cref="T:System.Linq.Expressions.Expression`1" />.</para>
- <para>The <see cref="M:System.Linq.Queryable.All``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.All``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}})" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.Execute``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.All``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}})" /> depends on the implementation of the <paramref name="source" /> parameter's type. The expected behavior is that it determines if all the elements in <paramref name="source" /> satisfy the condition in <paramref name="predicate" />.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>Determines whether all the elements of a sequence satisfy a condition.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>true if every element of the source sequence passes the test in the specified predicate, or if the sequence is empty; otherwise, false.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />A sequence whose elements to test for a condition.</param>
- <param name="predicate">
- <attribution license="cc4" from="Microsoft" modified="false" />A function to test each element for a condition.</param>
- <typeparam name="TSource">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of <paramref name="source" />.</typeparam>
- </Docs>
- </Member>
- <Member MemberName="Any<TSource>">
- <MemberSignature Language="C#" Value="public static bool Any<TSource> (this System.Linq.IQueryable<TSource> source);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig bool Any<TSource>(class System.Linq.IQueryable`1<!!TSource> source) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Boolean</ReturnType>
- </ReturnValue>
- <TypeParameters>
- <TypeParameter Name="TSource" />
- </TypeParameters>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IQueryable<TSource>" RefType="this" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The <see cref="M:System.Linq.Queryable.Any``1(System.Linq.IQueryable{``0})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.Any``1(System.Linq.IQueryable{``0})" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.Execute``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.Any``1(System.Linq.IQueryable{``0})" /> depends on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that it determines if <paramref name="source" /> contains any elements.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>Determines whether a sequence contains any elements.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>true if the source sequence contains any elements; otherwise, false.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />A sequence to check for being empty.</param>
- <typeparam name="TSource">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of <paramref name="source" />.</typeparam>
- </Docs>
- </Member>
- <Member MemberName="Any<TSource>">
- <MemberSignature Language="C#" Value="public static bool Any<TSource> (this System.Linq.IQueryable<TSource> source, System.Linq.Expressions.Expression<Func<TSource,bool>> predicate);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig bool Any<TSource>(class System.Linq.IQueryable`1<!!TSource> source, class System.Linq.Expressions.Expression`1<class System.Func`2<!!TSource, bool>> predicate) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Boolean</ReturnType>
- </ReturnValue>
- <TypeParameters>
- <TypeParameter Name="TSource" />
- </TypeParameters>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IQueryable<TSource>" RefType="this" />
- <Parameter Name="predicate" Type="System.Linq.Expressions.Expression<System.Func<TSource,System.Boolean>>" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>This method has at least one parameter of type <see cref="T:System.Linq.Expressions.Expression`1" /> whose type argument is one of the <see cref="T:System.Func`2" /> types. For these parameters, you can pass in a lambda expression and it will be compiled to an <see cref="T:System.Linq.Expressions.Expression`1" />.</para>
- <para>The <see cref="M:System.Linq.Queryable.Any``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.Any``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}})" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.Execute``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.Any``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}})" /> depends on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that it determines if any of the elements of <paramref name="source" /> satisfy the condition specified by <paramref name="predicate" />.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>Determines whether any element of a sequence satisfies a condition.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>true if any elements in the source sequence pass the test in the specified predicate; otherwise, false.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />A sequence whose elements to test for a condition.</param>
- <param name="predicate">
- <attribution license="cc4" from="Microsoft" modified="false" />A function to test each element for a condition.</param>
- <typeparam name="TSource">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of <paramref name="source" />.</typeparam>
- </Docs>
- </Member>
- <Member MemberName="AsQueryable">
- <MemberSignature Language="C#" Value="public static System.Linq.IQueryable AsQueryable (this System.Collections.IEnumerable source);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig class System.Linq.IQueryable AsQueryable(class System.Collections.IEnumerable source) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Linq.IQueryable</ReturnType>
- </ReturnValue>
- <Parameters>
- <Parameter Name="source" Type="System.Collections.IEnumerable" RefType="this" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>If the type of <paramref name="source" /> implements <see cref="T:System.Linq.IQueryable`1" />, <see cref="M:System.Linq.Queryable.AsQueryable(System.Collections.IEnumerable)" /> returns it directly. Otherwise, it returns an <see cref="T:System.Linq.IQueryable`1" /> that executes queries by calling the equivalent query operator methods in <see cref="T:System.Linq.Enumerable" /> instead of those in <see cref="T:System.Linq.Queryable" />.</para>
- <para>This method assumes that <paramref name="source" /> implements <see cref="T:System.Collections.Generic.IEnumerable`1" /> for some <paramref name="T" />. At runtime, the result is of type <see cref="T:System.Linq.IQueryable`1" /> for the same <paramref name="T" />. This method is useful in dynamic scenarios when you do not statically know the type of <paramref name="T" />.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>Converts an <see cref="T:System.Collections.IEnumerable" /> to an <see cref="T:System.Linq.IQueryable" />.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>An <see cref="T:System.Linq.IQueryable" /> that represents the input sequence.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />A sequence to convert.</param>
- </Docs>
- </Member>
- <Member MemberName="AsQueryable<TElement>">
- <MemberSignature Language="C#" Value="public static System.Linq.IQueryable<TElement> AsQueryable<TElement> (this System.Collections.Generic.IEnumerable<TElement> source);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig class System.Linq.IQueryable`1<!!TElement> AsQueryable<TElement>(class System.Collections.Generic.IEnumerable`1<!!TElement> source) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Linq.IQueryable<TElement></ReturnType>
- </ReturnValue>
- <TypeParameters>
- <TypeParameter Name="TElement" />
- </TypeParameters>
- <Parameters>
- <Parameter Name="source" Type="System.Collections.Generic.IEnumerable<TElement>" RefType="this" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>If the type of <paramref name="source" /> implements <see cref="T:System.Linq.IQueryable`1" />, <see cref="M:System.Linq.Queryable.AsQueryable``1(System.Collections.Generic.IEnumerable{``0})" /> returns it directly. Otherwise, it returns an <see cref="T:System.Linq.IQueryable`1" /> that executes queries by calling the equivalent query operator methods in <see cref="T:System.Linq.Enumerable" /> instead of those in <see cref="T:System.Linq.Queryable" />.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>Converts a generic <see cref="T:System.Collections.Generic.IEnumerable`1" /> to a generic <see cref="T:System.Linq.IQueryable`1" />.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>An <see cref="T:System.Linq.IQueryable`1" /> that represents the input sequence.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />A sequence to convert.</param>
- <typeparam name="TElement">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of <paramref name="source" />.</typeparam>
- </Docs>
- </Member>
- <Member MemberName="Average">
- <MemberSignature Language="C#" Value="public static decimal Average (this System.Linq.IQueryable<decimal> source);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig valuetype System.Decimal Average(class System.Linq.IQueryable`1<valuetype System.Decimal> source) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Decimal</ReturnType>
- </ReturnValue>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IQueryable<System.Decimal>" RefType="this" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The <see cref="M:System.Linq.Queryable.Average(System.Linq.IQueryable{System.Decimal})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.Average(System.Linq.IQueryable{System.Decimal})" /> itself. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.Execute``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.Average(System.Linq.IQueryable{System.Decimal})" /> depends on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that it calculates the average of the values in <paramref name="source" />.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>Computes the average of a sequence of <see cref="T:System.Decimal" /> values.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The average of the sequence of values.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />A sequence of <see cref="T:System.Decimal" /> values to calculate the average of.</param>
- </Docs>
- </Member>
- <Member MemberName="Average">
- <MemberSignature Language="C#" Value="public static double Average (this System.Linq.IQueryable<double> source);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig float64 Average(class System.Linq.IQueryable`1<float64> source) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Double</ReturnType>
- </ReturnValue>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IQueryable<System.Double>" RefType="this" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The <see cref="M:System.Linq.Queryable.Average(System.Linq.IQueryable{System.Double})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.Average(System.Linq.IQueryable{System.Double})" /> itself. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.Execute``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.Average(System.Linq.IQueryable{System.Double})" /> depends on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that it calculates the average of the values in <paramref name="source" />.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>Computes the average of a sequence of <see cref="T:System.Double" /> values.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The average of the sequence of values.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />A sequence of <see cref="T:System.Double" /> values to calculate the average of.</param>
- </Docs>
- </Member>
- <Member MemberName="Average">
- <MemberSignature Language="C#" Value="public static double Average (this System.Linq.IQueryable<int> source);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig float64 Average(class System.Linq.IQueryable`1<int32> source) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Double</ReturnType>
- </ReturnValue>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IQueryable<System.Int32>" RefType="this" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The <see cref="M:System.Linq.Queryable.Average(System.Linq.IQueryable{System.Int32})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.Average(System.Linq.IQueryable{System.Int32})" /> itself. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.Execute``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.Average(System.Linq.IQueryable{System.Int32})" /> depends on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that it calculates the average of the values in <paramref name="source" />.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>Computes the average of a sequence of <see cref="T:System.Int32" /> values.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The average of the sequence of values.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />A sequence of <see cref="T:System.Int32" /> values to calculate the average of.</param>
- </Docs>
- </Member>
- <Member MemberName="Average">
- <MemberSignature Language="C#" Value="public static double Average (this System.Linq.IQueryable<long> source);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig float64 Average(class System.Linq.IQueryable`1<int64> source) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Double</ReturnType>
- </ReturnValue>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IQueryable<System.Int64>" RefType="this" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The <see cref="M:System.Linq.Queryable.Average(System.Linq.IQueryable{System.Int64})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.Average(System.Linq.IQueryable{System.Int64})" /> itself. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.Execute``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.Average(System.Linq.IQueryable{System.Int64})" /> depends on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that it calculates the average of the values in <paramref name="source" />.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>Computes the average of a sequence of <see cref="T:System.Int64" /> values.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The average of the sequence of values.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />A sequence of <see cref="T:System.Int64" /> values to calculate the average of.</param>
- </Docs>
- </Member>
- <Member MemberName="Average">
- <MemberSignature Language="C#" Value="public static Nullable<decimal> Average (this System.Linq.IQueryable<Nullable<decimal>> source);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig valuetype System.Nullable`1<valuetype System.Decimal> Average(class System.Linq.IQueryable`1<valuetype System.Nullable`1<valuetype System.Decimal>> source) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Nullable<System.Decimal></ReturnType>
- </ReturnValue>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IQueryable<System.Nullable<System.Decimal>>" RefType="this" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The <see cref="M:System.Linq.Queryable.Average(System.Linq.IQueryable{System.Nullable{System.Decimal}})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.Average(System.Linq.IQueryable{System.Nullable{System.Decimal}})" /> itself. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.Execute``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.Average(System.Linq.IQueryable{System.Nullable{System.Decimal}})" /> depends on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that it calculates the average of the values in <paramref name="source" />.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>Computes the average of a sequence of nullable <see cref="T:System.Decimal" /> values.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The average of the sequence of values, or null if the source sequence is empty or contains only null values.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />A sequence of nullable <see cref="T:System.Decimal" /> values to calculate the average of.</param>
- </Docs>
- </Member>
- <Member MemberName="Average">
- <MemberSignature Language="C#" Value="public static Nullable<double> Average (this System.Linq.IQueryable<Nullable<double>> source);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig valuetype System.Nullable`1<float64> Average(class System.Linq.IQueryable`1<valuetype System.Nullable`1<float64>> source) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Nullable<System.Double></ReturnType>
- </ReturnValue>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IQueryable<System.Nullable<System.Double>>" RefType="this" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The <see cref="M:System.Linq.Queryable.Average(System.Linq.IQueryable{System.Nullable{System.Double}})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.Average(System.Linq.IQueryable{System.Nullable{System.Double}})" /> itself. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.Execute``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.Average(System.Linq.IQueryable{System.Nullable{System.Double}})" /> depends on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that it calculates the average of the values in <paramref name="source" />.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>Computes the average of a sequence of nullable <see cref="T:System.Double" /> values.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The average of the sequence of values, or null if the source sequence is empty or contains only null values.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />A sequence of nullable <see cref="T:System.Double" /> values to calculate the average of.</param>
- </Docs>
- </Member>
- <Member MemberName="Average">
- <MemberSignature Language="C#" Value="public static Nullable<double> Average (this System.Linq.IQueryable<Nullable<int>> source);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig valuetype System.Nullable`1<float64> Average(class System.Linq.IQueryable`1<valuetype System.Nullable`1<int32>> source) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Nullable<System.Double></ReturnType>
- </ReturnValue>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IQueryable<System.Nullable<System.Int32>>" RefType="this" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The <see cref="M:System.Linq.Queryable.Average(System.Linq.IQueryable{System.Nullable{System.Int32}})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.Average(System.Linq.IQueryable{System.Nullable{System.Int32}})" /> itself. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.Execute``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.Average(System.Linq.IQueryable{System.Nullable{System.Int32}})" /> depends on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that it calculates the average of the values in <paramref name="source" />.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>Computes the average of a sequence of nullable <see cref="T:System.Int32" /> values.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The average of the sequence of values, or null if the source sequence is empty or contains only null values.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />A sequence of nullable <see cref="T:System.Int32" /> values to calculate the average of.</param>
- </Docs>
- </Member>
- <Member MemberName="Average">
- <MemberSignature Language="C#" Value="public static Nullable<double> Average (this System.Linq.IQueryable<Nullable<long>> source);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig valuetype System.Nullable`1<float64> Average(class System.Linq.IQueryable`1<valuetype System.Nullable`1<int64>> source) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Nullable<System.Double></ReturnType>
- </ReturnValue>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IQueryable<System.Nullable<System.Int64>>" RefType="this" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The <see cref="M:System.Linq.Queryable.Average(System.Linq.IQueryable{System.Nullable{System.Int64}})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.Average(System.Linq.IQueryable{System.Nullable{System.Int64}})" /> itself. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.Execute``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.Average(System.Linq.IQueryable{System.Nullable{System.Int64}})" /> depends on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that it calculates the average of the values in <paramref name="source" />.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>Computes the average of a sequence of nullable <see cref="T:System.Int64" /> values.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The average of the sequence of values, or null if the source sequence is empty or contains only null values.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />A sequence of nullable <see cref="T:System.Int64" /> values to calculate the average of.</param>
- </Docs>
- </Member>
- <Member MemberName="Average">
- <MemberSignature Language="C#" Value="public static Nullable<float> Average (this System.Linq.IQueryable<Nullable<float>> source);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig valuetype System.Nullable`1<float32> Average(class System.Linq.IQueryable`1<valuetype System.Nullable`1<float32>> source) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Nullable<System.Single></ReturnType>
- </ReturnValue>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IQueryable<System.Nullable<System.Single>>" RefType="this" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The <see cref="M:System.Linq.Queryable.Average(System.Linq.IQueryable{System.Nullable{System.Single}})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.Average(System.Linq.IQueryable{System.Nullable{System.Single}})" /> itself. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.Execute``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.Average(System.Linq.IQueryable{System.Nullable{System.Single}})" /> depends on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that it calculates the average of the values in <paramref name="source" />.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>Computes the average of a sequence of nullable <see cref="T:System.Single" /> values.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The average of the sequence of values, or null if the source sequence is empty or contains only null values.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />A sequence of nullable <see cref="T:System.Single" /> values to calculate the average of.</param>
- </Docs>
- </Member>
- <Member MemberName="Average">
- <MemberSignature Language="C#" Value="public static float Average (this System.Linq.IQueryable<float> source);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig float32 Average(class System.Linq.IQueryable`1<float32> source) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Single</ReturnType>
- </ReturnValue>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IQueryable<System.Single>" RefType="this" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The <see cref="M:System.Linq.Queryable.Average(System.Linq.IQueryable{System.Single})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.Average(System.Linq.IQueryable{System.Single})" /> itself. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.Execute``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.Average(System.Linq.IQueryable{System.Single})" /> depends on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that it calculates the average of the values in <paramref name="source" />.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>Computes the average of a sequence of <see cref="T:System.Single" /> values.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The average of the sequence of values.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />A sequence of <see cref="T:System.Single" /> values to calculate the average of.</param>
- </Docs>
- </Member>
- <Member MemberName="Average<TSource>">
- <MemberSignature Language="C#" Value="public static decimal Average<TSource> (this System.Linq.IQueryable<TSource> source, System.Linq.Expressions.Expression<Func<TSource,decimal>> selector);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig valuetype System.Decimal Average<TSource>(class System.Linq.IQueryable`1<!!TSource> source, class System.Linq.Expressions.Expression`1<class System.Func`2<!!TSource, valuetype System.Decimal>> selector) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Decimal</ReturnType>
- </ReturnValue>
- <TypeParameters>
- <TypeParameter Name="TSource" />
- </TypeParameters>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IQueryable<TSource>" RefType="this" />
- <Parameter Name="selector" Type="System.Linq.Expressions.Expression<System.Func<TSource,System.Decimal>>" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>This method has at least one parameter of type <see cref="T:System.Linq.Expressions.Expression`1" /> whose type argument is one of the <see cref="T:System.Func`2" /> types. For these parameters, you can pass in a lambda expression and it will be compiled to an <see cref="T:System.Linq.Expressions.Expression`1" />.</para>
- <para>The <see cref="M:System.Linq.Queryable.Average``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Decimal}})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.Average``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Decimal}})" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.Execute``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.Average``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Decimal}})" /> depends on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that it calculates the average of the values in <paramref name="source" /> after invoking <paramref name="selector" /> on each value.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>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.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The average of the sequence of values.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />A sequence of values that are used to calculate an average.</param>
- <param name="selector">
- <attribution license="cc4" from="Microsoft" modified="false" />A projection function to apply to each element.</param>
- <typeparam name="TSource">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of <paramref name="source" />.</typeparam>
- </Docs>
- </Member>
- <Member MemberName="Average<TSource>">
- <MemberSignature Language="C#" Value="public static double Average<TSource> (this System.Linq.IQueryable<TSource> source, System.Linq.Expressions.Expression<Func<TSource,double>> selector);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig float64 Average<TSource>(class System.Linq.IQueryable`1<!!TSource> source, class System.Linq.Expressions.Expression`1<class System.Func`2<!!TSource, float64>> selector) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Double</ReturnType>
- </ReturnValue>
- <TypeParameters>
- <TypeParameter Name="TSource" />
- </TypeParameters>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IQueryable<TSource>" RefType="this" />
- <Parameter Name="selector" Type="System.Linq.Expressions.Expression<System.Func<TSource,System.Double>>" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>This method has at least one parameter of type <see cref="T:System.Linq.Expressions.Expression`1" /> whose type argument is one of the <see cref="T:System.Func`2" /> types. For these parameters, you can pass in a lambda expression and it will be compiled to an <see cref="T:System.Linq.Expressions.Expression`1" />.</para>
- <para>The <see cref="M:System.Linq.Queryable.Average``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Double}})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.Average``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Double}})" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.Execute``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.Average``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Double}})" /> depends on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that it calculates the average of the values in <paramref name="source" /> after invoking <paramref name="selector" /> on each value.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>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.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The average of the sequence of values.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />A sequence of values to calculate the average of.</param>
- <param name="selector">
- <attribution license="cc4" from="Microsoft" modified="false" />A projection function to apply to each element.</param>
- <typeparam name="TSource">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of <paramref name="source" />.</typeparam>
- </Docs>
- </Member>
- <Member MemberName="Average<TSource>">
- <MemberSignature Language="C#" Value="public static double Average<TSource> (this System.Linq.IQueryable<TSource> source, System.Linq.Expressions.Expression<Func<TSource,int>> selector);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig float64 Average<TSource>(class System.Linq.IQueryable`1<!!TSource> source, class System.Linq.Expressions.Expression`1<class System.Func`2<!!TSource, int32>> selector) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Double</ReturnType>
- </ReturnValue>
- <TypeParameters>
- <TypeParameter Name="TSource" />
- </TypeParameters>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IQueryable<TSource>" RefType="this" />
- <Parameter Name="selector" Type="System.Linq.Expressions.Expression<System.Func<TSource,System.Int32>>" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>This method has at least one parameter of type <see cref="T:System.Linq.Expressions.Expression`1" /> whose type argument is one of the <see cref="T:System.Func`2" /> types. For these parameters, you can pass in a lambda expression and it will be compiled to an <see cref="T:System.Linq.Expressions.Expression`1" />.</para>
- <para>The <see cref="M:System.Linq.Queryable.Average``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Int32}})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.Average``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Int32}})" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.Execute``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.Average``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Int32}})" /> depends on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that it calculates the average of the values in <paramref name="source" /> after invoking <paramref name="selector" /> on each value.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>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.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The average of the sequence of values.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />A sequence of values to calculate the average of.</param>
- <param name="selector">
- <attribution license="cc4" from="Microsoft" modified="false" />A projection function to apply to each element.</param>
- <typeparam name="TSource">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of <paramref name="source" />.</typeparam>
- </Docs>
- </Member>
- <Member MemberName="Average<TSource>">
- <MemberSignature Language="C#" Value="public static double Average<TSource> (this System.Linq.IQueryable<TSource> source, System.Linq.Expressions.Expression<Func<TSource,long>> selector);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig float64 Average<TSource>(class System.Linq.IQueryable`1<!!TSource> source, class System.Linq.Expressions.Expression`1<class System.Func`2<!!TSource, int64>> selector) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Double</ReturnType>
- </ReturnValue>
- <TypeParameters>
- <TypeParameter Name="TSource" />
- </TypeParameters>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IQueryable<TSource>" RefType="this" />
- <Parameter Name="selector" Type="System.Linq.Expressions.Expression<System.Func<TSource,System.Int64>>" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>This method has at least one parameter of type <see cref="T:System.Linq.Expressions.Expression`1" /> whose type argument is one of the <see cref="T:System.Func`2" /> types. For these parameters, you can pass in a lambda expression and it will be compiled to an <see cref="T:System.Linq.Expressions.Expression`1" />.</para>
- <para>The <see cref="M:System.Linq.Queryable.Average``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Int64}})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.Average``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Int64}})" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.Execute``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.Average``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Int64}})" /> depends on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that it calculates the average of the values in <paramref name="source" /> after invoking <paramref name="selector" /> on each value.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>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.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The average of the sequence of values.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />A sequence of values to calculate the average of.</param>
- <param name="selector">
- <attribution license="cc4" from="Microsoft" modified="false" />A projection function to apply to each element.</param>
- <typeparam name="TSource">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of <paramref name="source" />.</typeparam>
- </Docs>
- </Member>
- <Member MemberName="Average<TSource>">
- <MemberSignature Language="C#" Value="public static Nullable<decimal> Average<TSource> (this System.Linq.IQueryable<TSource> source, System.Linq.Expressions.Expression<Func<TSource,Nullable<decimal>>> selector);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig valuetype System.Nullable`1<valuetype System.Decimal> Average<TSource>(class System.Linq.IQueryable`1<!!TSource> source, class System.Linq.Expressions.Expression`1<class System.Func`2<!!TSource, valuetype System.Nullable`1<valuetype System.Decimal>>> selector) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Nullable<System.Decimal></ReturnType>
- </ReturnValue>
- <TypeParameters>
- <TypeParameter Name="TSource" />
- </TypeParameters>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IQueryable<TSource>" RefType="this" />
- <Parameter Name="selector" Type="System.Linq.Expressions.Expression<System.Func<TSource,System.Nullable<System.Decimal>>>" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>This method has at least one parameter of type <see cref="T:System.Linq.Expressions.Expression`1" /> whose type argument is one of the <see cref="T:System.Func`2" /> types. For these parameters, you can pass in a lambda expression and it will be compiled to an <see cref="T:System.Linq.Expressions.Expression`1" />.</para>
- <para>The <see cref="M:System.Linq.Queryable.Average``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Nullable{System.Decimal}}})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.Average``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Nullable{System.Decimal}}})" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.Execute``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.Average``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Nullable{System.Decimal}}})" /> depends on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that it calculates the average of the values in <paramref name="source" /> after invoking <paramref name="selector" /> on each value.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>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.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The average of the sequence of values, or null if the <paramref name="source" /> sequence is empty or contains only null values.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />A sequence of values to calculate the average of.</param>
- <param name="selector">
- <attribution license="cc4" from="Microsoft" modified="false" />A projection function to apply to each element.</param>
- <typeparam name="TSource">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of <paramref name="source" />.</typeparam>
- </Docs>
- </Member>
- <Member MemberName="Average<TSource>">
- <MemberSignature Language="C#" Value="public static Nullable<double> Average<TSource> (this System.Linq.IQueryable<TSource> source, System.Linq.Expressions.Expression<Func<TSource,Nullable<double>>> selector);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig valuetype System.Nullable`1<float64> Average<TSource>(class System.Linq.IQueryable`1<!!TSource> source, class System.Linq.Expressions.Expression`1<class System.Func`2<!!TSource, valuetype System.Nullable`1<float64>>> selector) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Nullable<System.Double></ReturnType>
- </ReturnValue>
- <TypeParameters>
- <TypeParameter Name="TSource" />
- </TypeParameters>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IQueryable<TSource>" RefType="this" />
- <Parameter Name="selector" Type="System.Linq.Expressions.Expression<System.Func<TSource,System.Nullable<System.Double>>>" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>This method has at least one parameter of type <see cref="T:System.Linq.Expressions.Expression`1" /> whose type argument is one of the <see cref="T:System.Func`2" /> types. For these parameters, you can pass in a lambda expression and it will be compiled to an <see cref="T:System.Linq.Expressions.Expression`1" />.</para>
- <para>The <see cref="M:System.Linq.Queryable.Average``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Nullable{System.Double}}})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.Average``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Nullable{System.Double}}})" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.Execute``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.Average``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Nullable{System.Double}}})" /> depends on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that it calculates the average of the values in <paramref name="source" /> after invoking <paramref name="selector" /> on each value.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>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.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The average of the sequence of values, or null if the <paramref name="source" /> sequence is empty or contains only null values.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />A sequence of values to calculate the average of.</param>
- <param name="selector">
- <attribution license="cc4" from="Microsoft" modified="false" />A projection function to apply to each element.</param>
- <typeparam name="TSource">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of <paramref name="source" />.</typeparam>
- </Docs>
- </Member>
- <Member MemberName="Average<TSource>">
- <MemberSignature Language="C#" Value="public static Nullable<double> Average<TSource> (this System.Linq.IQueryable<TSource> source, System.Linq.Expressions.Expression<Func<TSource,Nullable<int>>> selector);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig valuetype System.Nullable`1<float64> Average<TSource>(class System.Linq.IQueryable`1<!!TSource> source, class System.Linq.Expressions.Expression`1<class System.Func`2<!!TSource, valuetype System.Nullable`1<int32>>> selector) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Nullable<System.Double></ReturnType>
- </ReturnValue>
- <TypeParameters>
- <TypeParameter Name="TSource" />
- </TypeParameters>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IQueryable<TSource>" RefType="this" />
- <Parameter Name="selector" Type="System.Linq.Expressions.Expression<System.Func<TSource,System.Nullable<System.Int32>>>" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>This method has at least one parameter of type <see cref="T:System.Linq.Expressions.Expression`1" /> whose type argument is one of the <see cref="T:System.Func`2" /> types. For these parameters, you can pass in a lambda expression and it will be compiled to an <see cref="T:System.Linq.Expressions.Expression`1" />.</para>
- <para>The <see cref="M:System.Linq.Queryable.Average``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Nullable{System.Int32}}})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.Average``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Nullable{System.Int32}}})" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.Execute``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.Average``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Nullable{System.Int32}}})" /> depends on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that it calculates the average of the values in <paramref name="source" /> after invoking <paramref name="selector" /> on each value.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>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.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The average of the sequence of values, or null if the <paramref name="source" /> sequence is empty or contains only null values.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />A sequence of values to calculate the average of.</param>
- <param name="selector">
- <attribution license="cc4" from="Microsoft" modified="false" />A projection function to apply to each element.</param>
- <typeparam name="TSource">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of <paramref name="source" />.</typeparam>
- </Docs>
- </Member>
- <Member MemberName="Average<TSource>">
- <MemberSignature Language="C#" Value="public static Nullable<double> Average<TSource> (this System.Linq.IQueryable<TSource> source, System.Linq.Expressions.Expression<Func<TSource,Nullable<long>>> selector);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig valuetype System.Nullable`1<float64> Average<TSource>(class System.Linq.IQueryable`1<!!TSource> source, class System.Linq.Expressions.Expression`1<class System.Func`2<!!TSource, valuetype System.Nullable`1<int64>>> selector) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Nullable<System.Double></ReturnType>
- </ReturnValue>
- <TypeParameters>
- <TypeParameter Name="TSource" />
- </TypeParameters>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IQueryable<TSource>" RefType="this" />
- <Parameter Name="selector" Type="System.Linq.Expressions.Expression<System.Func<TSource,System.Nullable<System.Int64>>>" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>This method has at least one parameter of type <see cref="T:System.Linq.Expressions.Expression`1" /> whose type argument is one of the <see cref="T:System.Func`2" /> types. For these parameters, you can pass in a lambda expression and it will be compiled to an <see cref="T:System.Linq.Expressions.Expression`1" />.</para>
- <para>The <see cref="M:System.Linq.Queryable.Average``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Nullable{System.Int64}}})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.Average``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Nullable{System.Int64}}})" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.Execute``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.Average``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Nullable{System.Int64}}})" /> depends on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that it calculates the average of the values in <paramref name="source" /> after invoking <paramref name="selector" /> on each value.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>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.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The average of the sequence of values, or null if the <paramref name="source" /> sequence is empty or contains only null values.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />A sequence of values to calculate the average of.</param>
- <param name="selector">
- <attribution license="cc4" from="Microsoft" modified="false" />A projection function to apply to each element.</param>
- <typeparam name="TSource">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of <paramref name="source" />.</typeparam>
- </Docs>
- </Member>
- <Member MemberName="Average<TSource>">
- <MemberSignature Language="C#" Value="public static Nullable<float> Average<TSource> (this System.Linq.IQueryable<TSource> source, System.Linq.Expressions.Expression<Func<TSource,Nullable<float>>> selector);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig valuetype System.Nullable`1<float32> Average<TSource>(class System.Linq.IQueryable`1<!!TSource> source, class System.Linq.Expressions.Expression`1<class System.Func`2<!!TSource, valuetype System.Nullable`1<float32>>> selector) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Nullable<System.Single></ReturnType>
- </ReturnValue>
- <TypeParameters>
- <TypeParameter Name="TSource" />
- </TypeParameters>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IQueryable<TSource>" RefType="this" />
- <Parameter Name="selector" Type="System.Linq.Expressions.Expression<System.Func<TSource,System.Nullable<System.Single>>>" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>This method has at least one parameter of type <see cref="T:System.Linq.Expressions.Expression`1" /> whose type argument is one of the <see cref="T:System.Func`2" /> types. For these parameters, you can pass in a lambda expression and it will be compiled to an <see cref="T:System.Linq.Expressions.Expression`1" />.</para>
- <para>The <see cref="M:System.Linq.Queryable.Average``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Nullable{System.Single}}})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.Average``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Nullable{System.Single}}})" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.Execute``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.Average``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Nullable{System.Single}}})" /> depends on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that it calculates the average of the values in <paramref name="source" /> after invoking <paramref name="selector" /> on each value.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>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.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The average of the sequence of values, or null if the <paramref name="source" /> sequence is empty or contains only null values.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />A sequence of values to calculate the average of.</param>
- <param name="selector">
- <attribution license="cc4" from="Microsoft" modified="false" />A projection function to apply to each element.</param>
- <typeparam name="TSource">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of <paramref name="source" />.</typeparam>
- </Docs>
- </Member>
- <Member MemberName="Average<TSource>">
- <MemberSignature Language="C#" Value="public static float Average<TSource> (this System.Linq.IQueryable<TSource> source, System.Linq.Expressions.Expression<Func<TSource,float>> selector);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig float32 Average<TSource>(class System.Linq.IQueryable`1<!!TSource> source, class System.Linq.Expressions.Expression`1<class System.Func`2<!!TSource, float32>> selector) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Single</ReturnType>
- </ReturnValue>
- <TypeParameters>
- <TypeParameter Name="TSource" />
- </TypeParameters>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IQueryable<TSource>" RefType="this" />
- <Parameter Name="selector" Type="System.Linq.Expressions.Expression<System.Func<TSource,System.Single>>" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>This method has at least one parameter of type <see cref="T:System.Linq.Expressions.Expression`1" /> whose type argument is one of the <see cref="T:System.Func`2" /> types. For these parameters, you can pass in a lambda expression and it will be compiled to an <see cref="T:System.Linq.Expressions.Expression`1" />.</para>
- <para>The <see cref="M:System.Linq.Queryable.Average``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Single}})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.Average``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Single}})" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.Execute``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.Average``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Single}})" /> depends on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that it calculates the average of the values in <paramref name="source" /> after invoking <paramref name="selector" /> on each value.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>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.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The average of the sequence of values.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />A sequence of values to calculate the average of.</param>
- <param name="selector">
- <attribution license="cc4" from="Microsoft" modified="false" />A projection function to apply to each element.</param>
- <typeparam name="TSource">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of <paramref name="source" />.</typeparam>
- </Docs>
- </Member>
- <Member MemberName="Cast<TResult>">
- <MemberSignature Language="C#" Value="public static System.Linq.IQueryable<TResult> Cast<TResult> (this System.Linq.IQueryable source);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig class System.Linq.IQueryable`1<!!TResult> Cast<TResult>(class System.Linq.IQueryable source) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Linq.IQueryable<TResult></ReturnType>
- </ReturnValue>
- <TypeParameters>
- <TypeParameter Name="TResult" />
- </TypeParameters>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IQueryable" RefType="this" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The <see cref="M:System.Linq.Queryable.Cast``1(System.Linq.IQueryable)" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.Cast``1(System.Linq.IQueryable)" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.CreateQuery(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.Cast``1(System.Linq.IQueryable)" /> depends on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that it converts the values in <paramref name="source" /> to type <paramref name="TResult" />.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>Converts the elements of an <see cref="T:System.Linq.IQueryable" /> to the specified type.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>An <see cref="T:System.Linq.IQueryable`1" /> that contains each element of the source sequence converted to the specified type.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Linq.IQueryable" /> that contains the elements to be converted.</param>
- <typeparam name="TResult">
- <attribution license="cc4" from="Microsoft" modified="false" />The type to convert the elements of <paramref name="source" /> to.</typeparam>
- </Docs>
- </Member>
- <Member MemberName="Concat<TSource>">
- <MemberSignature Language="C#" Value="public static System.Linq.IQueryable<TSource> Concat<TSource> (this System.Linq.IQueryable<TSource> source1, System.Collections.Generic.IEnumerable<TSource> source2);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig class System.Linq.IQueryable`1<!!TSource> Concat<TSource>(class System.Linq.IQueryable`1<!!TSource> source1, class System.Collections.Generic.IEnumerable`1<!!TSource> source2) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Linq.IQueryable<TSource></ReturnType>
- </ReturnValue>
- <TypeParameters>
- <TypeParameter Name="TSource" />
- </TypeParameters>
- <Parameters>
- <Parameter Name="source1" Type="System.Linq.IQueryable<TSource>" RefType="this" />
- <Parameter Name="source2" Type="System.Collections.Generic.IEnumerable<TSource>" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The <see cref="M:System.Linq.Queryable.Concat``1(System.Linq.IQueryable{``0},System.Collections.Generic.IEnumerable{``0})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.Concat``1(System.Linq.IQueryable{``0},System.Collections.Generic.IEnumerable{``0})" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.CreateQuery``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source1" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.Concat``1(System.Linq.IQueryable{``0},System.Collections.Generic.IEnumerable{``0})" /> depends on the implementation of the type of the <paramref name="source1" /> parameter. The expected behavior is that the elements in <paramref name="source2" /> are concatenated to those of <paramref name="source1" /> to create a new sequence.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>Concatenates two sequences.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>An <see cref="T:System.Linq.IQueryable`1" /> that contains the concatenated elements of the two input sequences.</para>
- </returns>
- <param name="source1">
- <attribution license="cc4" from="Microsoft" modified="false" />The first sequence to concatenate.</param>
- <param name="source2">
- <attribution license="cc4" from="Microsoft" modified="false" />The sequence to concatenate to the first sequence.</param>
- <typeparam name="TSource">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of the input sequences.</typeparam>
- </Docs>
- </Member>
- <Member MemberName="Contains<TSource>">
- <MemberSignature Language="C#" Value="public static bool Contains<TSource> (this System.Linq.IQueryable<TSource> source, TSource item);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig bool Contains<TSource>(class System.Linq.IQueryable`1<!!TSource> source, !!TSource item) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Boolean</ReturnType>
- </ReturnValue>
- <TypeParameters>
- <TypeParameter Name="TSource" />
- </TypeParameters>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IQueryable<TSource>" RefType="this" />
- <Parameter Name="item" Type="TSource" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The <see cref="M:System.Linq.Queryable.Contains``1(System.Linq.IQueryable{``0},``0)" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.Contains``1(System.Linq.IQueryable{``0},``0)" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.Execute``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.Contains``1(System.Linq.IQueryable{``0},``0)" /> depends on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that it determines if <paramref name="source" /> contains <paramref name="item" />.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>Determines whether a sequence contains a specified element by using the default equality comparer.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>true if the input sequence contains an element that has the specified value; otherwise, false.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.Linq.IQueryable`1" /> in which to locate <paramref name="item" />.</param>
- <param name="item">
- <attribution license="cc4" from="Microsoft" modified="false" />The object to locate in the sequence.</param>
- <typeparam name="TSource">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of <paramref name="source" />.</typeparam>
- </Docs>
- </Member>
- <Member MemberName="Contains<TSource>">
- <MemberSignature Language="C#" Value="public static bool Contains<TSource> (this System.Linq.IQueryable<TSource> source, TSource item, System.Collections.Generic.IEqualityComparer<TSource> comparer);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig bool Contains<TSource>(class System.Linq.IQueryable`1<!!TSource> source, !!TSource item, class System.Collections.Generic.IEqualityComparer`1<!!TSource> comparer) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Boolean</ReturnType>
- </ReturnValue>
- <TypeParameters>
- <TypeParameter Name="TSource" />
- </TypeParameters>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IQueryable<TSource>" RefType="this" />
- <Parameter Name="item" Type="TSource" />
- <Parameter Name="comparer" Type="System.Collections.Generic.IEqualityComparer<TSource>" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The <see cref="M:System.Linq.Queryable.Contains``1(System.Linq.IQueryable{``0},``0,System.Collections.Generic.IEqualityComparer{``0})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.Contains``1(System.Linq.IQueryable{``0},``0,System.Collections.Generic.IEqualityComparer{``0})" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.Execute``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.Contains``1(System.Linq.IQueryable{``0},``0,System.Collections.Generic.IEqualityComparer{``0})" /> depends on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that it determines if <paramref name="source" /> contains <paramref name="item" /> by using <paramref name="comparer" /> to compare values.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>Determines whether a sequence contains a specified element by using a specified <see cref="T:System.Collections.Generic.IEqualityComparer`1" />.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>true if the input sequence contains an element that has the specified value; otherwise, false.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.Linq.IQueryable`1" /> in which to locate <paramref name="item" />.</param>
- <param name="item">
- <attribution license="cc4" from="Microsoft" modified="false" />The object to locate in the sequence.</param>
- <param name="comparer">
- <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> to compare values.</param>
- <typeparam name="TSource">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of <paramref name="source" />.</typeparam>
- </Docs>
- </Member>
- <Member MemberName="Count<TSource>">
- <MemberSignature Language="C#" Value="public static int Count<TSource> (this System.Linq.IQueryable<TSource> source);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig int32 Count<TSource>(class System.Linq.IQueryable`1<!!TSource> source) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Int32</ReturnType>
- </ReturnValue>
- <TypeParameters>
- <TypeParameter Name="TSource" />
- </TypeParameters>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IQueryable<TSource>" RefType="this" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The <see cref="M:System.Linq.Queryable.Count``1(System.Linq.IQueryable{``0})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.Count``1(System.Linq.IQueryable{``0})" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.Execute``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.Count``1(System.Linq.IQueryable{``0})" /> depends on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that it counts the number of items in <paramref name="source" />.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>Returns the number of elements in a sequence.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The number of elements in the input sequence.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Linq.IQueryable`1" /> that contains the elements to be counted.</param>
- <typeparam name="TSource">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of <paramref name="source" />.</typeparam>
- </Docs>
- </Member>
- <Member MemberName="Count<TSource>">
- <MemberSignature Language="C#" Value="public static int Count<TSource> (this System.Linq.IQueryable<TSource> source, System.Linq.Expressions.Expression<Func<TSource,bool>> predicate);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig int32 Count<TSource>(class System.Linq.IQueryable`1<!!TSource> source, class System.Linq.Expressions.Expression`1<class System.Func`2<!!TSource, bool>> predicate) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Int32</ReturnType>
- </ReturnValue>
- <TypeParameters>
- <TypeParameter Name="TSource" />
- </TypeParameters>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IQueryable<TSource>" RefType="this" />
- <Parameter Name="predicate" Type="System.Linq.Expressions.Expression<System.Func<TSource,System.Boolean>>" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>This method has at least one parameter of type <see cref="T:System.Linq.Expressions.Expression`1" /> whose type argument is one of the <see cref="T:System.Func`2" /> types. For these parameters, you can pass in a lambda expression and it will be compiled to an <see cref="T:System.Linq.Expressions.Expression`1" />.</para>
- <para>The <see cref="M:System.Linq.Queryable.Count``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.Count``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}})" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.Execute``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.Count``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}})" /> depends on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that it counts the number of items in <paramref name="source" /> that satisfy the condition specified by <paramref name="predicate" />.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>Returns the number of elements in the specified sequence that satisfies a condition.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The number of elements in the sequence that satisfies the condition in the predicate function.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.Linq.IQueryable`1" /> that contains the elements to be counted.</param>
- <param name="predicate">
- <attribution license="cc4" from="Microsoft" modified="false" />A function to test each element for a condition.</param>
- <typeparam name="TSource">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of <paramref name="source" />.</typeparam>
- </Docs>
- </Member>
- <Member MemberName="DefaultIfEmpty<TSource>">
- <MemberSignature Language="C#" Value="public static System.Linq.IQueryable<TSource> DefaultIfEmpty<TSource> (this System.Linq.IQueryable<TSource> source);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig class System.Linq.IQueryable`1<!!TSource> DefaultIfEmpty<TSource>(class System.Linq.IQueryable`1<!!TSource> source) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Linq.IQueryable<TSource></ReturnType>
- </ReturnValue>
- <TypeParameters>
- <TypeParameter Name="TSource" />
- </TypeParameters>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IQueryable<TSource>" RefType="this" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The <see cref="M:System.Linq.Queryable.DefaultIfEmpty``1(System.Linq.IQueryable{``0})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.DefaultIfEmpty``1(System.Linq.IQueryable{``0})" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.CreateQuery``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.DefaultIfEmpty``1(System.Linq.IQueryable{``0})" /> depends on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that it returns <paramref name="source" /> if it is not empty. Otherwise, it returns an <see cref="T:System.Linq.IQueryable`1" /> that contains <unmanagedCodeEntityReference>default</unmanagedCodeEntityReference>(<paramref name="TSource" />).</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>Returns the elements of the specified sequence or the type parameter's default value in a singleton collection if the sequence is empty.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>An <see cref="T:System.Linq.IQueryable`1" /> that contains default(<paramref name="TSource" />) if <paramref name="source" /> is empty; otherwise, <paramref name="source" />.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Linq.IQueryable`1" /> to return a default value for if empty.</param>
- <typeparam name="TSource">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of <paramref name="source" />.</typeparam>
- </Docs>
- </Member>
- <Member MemberName="DefaultIfEmpty<TSource>">
- <MemberSignature Language="C#" Value="public static System.Linq.IQueryable<TSource> DefaultIfEmpty<TSource> (this System.Linq.IQueryable<TSource> source, TSource defaultValue);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig class System.Linq.IQueryable`1<!!TSource> DefaultIfEmpty<TSource>(class System.Linq.IQueryable`1<!!TSource> source, !!TSource defaultValue) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Linq.IQueryable<TSource></ReturnType>
- </ReturnValue>
- <TypeParameters>
- <TypeParameter Name="TSource" />
- </TypeParameters>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IQueryable<TSource>" RefType="this" />
- <Parameter Name="defaultValue" Type="TSource" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The <see cref="M:System.Linq.Queryable.DefaultIfEmpty``1(System.Linq.IQueryable{``0},``0)" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.DefaultIfEmpty``1(System.Linq.IQueryable{``0},``0)" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.CreateQuery``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.DefaultIfEmpty``1(System.Linq.IQueryable{``0},``0)" /> depends on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that it returns <paramref name="source" /> if it is not empty. Otherwise, it returns an <see cref="T:System.Linq.IQueryable`1" /> that contains <paramref name="defaultValue" />.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>Returns the elements of the specified sequence or the specified value in a singleton collection if the sequence is empty.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>An <see cref="T:System.Linq.IQueryable`1" /> that contains <paramref name="defaultValue" /> if <paramref name="source" /> is empty; otherwise, <paramref name="source" />.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Linq.IQueryable`1" /> to return the specified value for if empty.</param>
- <param name="defaultValue">
- <attribution license="cc4" from="Microsoft" modified="false" />The value to return if the sequence is empty.</param>
- <typeparam name="TSource">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of <paramref name="source" />.</typeparam>
- </Docs>
- </Member>
- <Member MemberName="Distinct<TSource>">
- <MemberSignature Language="C#" Value="public static System.Linq.IQueryable<TSource> Distinct<TSource> (this System.Linq.IQueryable<TSource> source);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig class System.Linq.IQueryable`1<!!TSource> Distinct<TSource>(class System.Linq.IQueryable`1<!!TSource> source) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Linq.IQueryable<TSource></ReturnType>
- </ReturnValue>
- <TypeParameters>
- <TypeParameter Name="TSource" />
- </TypeParameters>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IQueryable<TSource>" RefType="this" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The <see cref="M:System.Linq.Queryable.Distinct``1(System.Linq.IQueryable{``0})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.Distinct``1(System.Linq.IQueryable{``0})" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.CreateQuery``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.Distinct``1(System.Linq.IQueryable{``0})" /> depends on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that it returns an unordered sequence of the unique items in <paramref name="source" />.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>Returns distinct elements from a sequence by using the default equality comparer to compare values.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>An <see cref="T:System.Linq.IQueryable`1" /> that contains distinct elements from <paramref name="source" />.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Linq.IQueryable`1" /> to remove duplicates from.</param>
- <typeparam name="TSource">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of <paramref name="source" />.</typeparam>
- </Docs>
- </Member>
- <Member MemberName="Distinct<TSource>">
- <MemberSignature Language="C#" Value="public static System.Linq.IQueryable<TSource> Distinct<TSource> (this System.Linq.IQueryable<TSource> source, System.Collections.Generic.IEqualityComparer<TSource> comparer);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig class System.Linq.IQueryable`1<!!TSource> Distinct<TSource>(class System.Linq.IQueryable`1<!!TSource> source, class System.Collections.Generic.IEqualityComparer`1<!!TSource> comparer) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Linq.IQueryable<TSource></ReturnType>
- </ReturnValue>
- <TypeParameters>
- <TypeParameter Name="TSource" />
- </TypeParameters>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IQueryable<TSource>" RefType="this" />
- <Parameter Name="comparer" Type="System.Collections.Generic.IEqualityComparer<TSource>" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The <see cref="M:System.Linq.Queryable.Distinct``1(System.Linq.IQueryable{``0},System.Collections.Generic.IEqualityComparer{``0})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.Distinct``1(System.Linq.IQueryable{``0},System.Collections.Generic.IEqualityComparer{``0})" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.CreateQuery``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.Distinct``1(System.Linq.IQueryable{``0},System.Collections.Generic.IEqualityComparer{``0})" /> depends on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that it returns an unordered sequence of the unique items in <paramref name="source" /> by using <paramref name="comparer" /> to compare values.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>Returns distinct elements from a sequence by using a specified <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> to compare values.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>An <see cref="T:System.Linq.IQueryable`1" /> that contains distinct elements from <paramref name="source" />.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Linq.IQueryable`1" /> to remove duplicates from.</param>
- <param name="comparer">
- <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> to compare values.</param>
- <typeparam name="TSource">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of <paramref name="source" />.</typeparam>
- </Docs>
- </Member>
- <Member MemberName="ElementAt<TSource>">
- <MemberSignature Language="C#" Value="public static TSource ElementAt<TSource> (this System.Linq.IQueryable<TSource> source, int index);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig !!TSource ElementAt<TSource>(class System.Linq.IQueryable`1<!!TSource> source, int32 index) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>TSource</ReturnType>
- </ReturnValue>
- <TypeParameters>
- <TypeParameter Name="TSource" />
- </TypeParameters>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IQueryable<TSource>" RefType="this" />
- <Parameter Name="index" Type="System.Int32" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The <see cref="M:System.Linq.Queryable.ElementAt``1(System.Linq.IQueryable{``0},System.Int32)" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.ElementAt``1(System.Linq.IQueryable{``0},System.Int32)" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.Execute``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.ElementAt``1(System.Linq.IQueryable{``0},System.Int32)" /> depends on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that it returns the item at position <paramref name="index" /> in <paramref name="source" />.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>Returns the element at a specified index in a sequence.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The element at the specified position in <paramref name="source" />.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.Linq.IQueryable`1" /> to return an element from.</param>
- <param name="index">
- <attribution license="cc4" from="Microsoft" modified="false" />The zero-based index of the element to retrieve.</param>
- <typeparam name="TSource">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of <paramref name="source" />.</typeparam>
- </Docs>
- </Member>
- <Member MemberName="ElementAtOrDefault<TSource>">
- <MemberSignature Language="C#" Value="public static TSource ElementAtOrDefault<TSource> (this System.Linq.IQueryable<TSource> source, int index);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig !!TSource ElementAtOrDefault<TSource>(class System.Linq.IQueryable`1<!!TSource> source, int32 index) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>TSource</ReturnType>
- </ReturnValue>
- <TypeParameters>
- <TypeParameter Name="TSource" />
- </TypeParameters>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IQueryable<TSource>" RefType="this" />
- <Parameter Name="index" Type="System.Int32" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The <see cref="M:System.Linq.Queryable.ElementAtOrDefault``1(System.Linq.IQueryable{``0},System.Int32)" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.ElementAtOrDefault``1(System.Linq.IQueryable{``0},System.Int32)" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.Execute``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.ElementAtOrDefault``1(System.Linq.IQueryable{``0},System.Int32)" /> depends on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that it returns the item at position <paramref name="index" /> in <paramref name="source" />, or <unmanagedCodeEntityReference>default</unmanagedCodeEntityReference>(<paramref name="TSource" />) if <paramref name="index" /> is outside the bounds of <paramref name="source" />.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>Returns the element at a specified index in a sequence or a default value if the index is out of range.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>
- <unmanagedCodeEntityReference>default</unmanagedCodeEntityReference>(<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" />.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.Linq.IQueryable`1" /> to return an element from.</param>
- <param name="index">
- <attribution license="cc4" from="Microsoft" modified="false" />The zero-based index of the element to retrieve.</param>
- <typeparam name="TSource">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of <paramref name="source" />.</typeparam>
- </Docs>
- </Member>
- <Member MemberName="Except<TSource>">
- <MemberSignature Language="C#" Value="public static System.Linq.IQueryable<TSource> Except<TSource> (this System.Linq.IQueryable<TSource> source1, System.Collections.Generic.IEnumerable<TSource> source2);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig class System.Linq.IQueryable`1<!!TSource> Except<TSource>(class System.Linq.IQueryable`1<!!TSource> source1, class System.Collections.Generic.IEnumerable`1<!!TSource> source2) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Linq.IQueryable<TSource></ReturnType>
- </ReturnValue>
- <TypeParameters>
- <TypeParameter Name="TSource" />
- </TypeParameters>
- <Parameters>
- <Parameter Name="source1" Type="System.Linq.IQueryable<TSource>" RefType="this" />
- <Parameter Name="source2" Type="System.Collections.Generic.IEnumerable<TSource>" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The <see cref="M:System.Linq.Queryable.Except``1(System.Linq.IQueryable{``0},System.Collections.Generic.IEnumerable{``0})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.Except``1(System.Linq.IQueryable{``0},System.Collections.Generic.IEnumerable{``0})" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.CreateQuery``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the<paramref name="source1" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.Except``1(System.Linq.IQueryable{``0},System.Collections.Generic.IEnumerable{``0})" /> depends on the implementation of the type of the <paramref name="source1" /> parameter. The expected behavior is that all the elements in <paramref name="source1" /> are returned except for those that are also in <paramref name="source2" />.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>Produces the set difference of two sequences by using the default equality comparer to compare values.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>An <see cref="T:System.Linq.IQueryable`1" /> that contains the set difference of the two sequences.</para>
- </returns>
- <param name="source1">
- <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.Linq.IQueryable`1" /> whose elements that are not also in <paramref name="source2" /> will be returned.</param>
- <param name="source2">
- <attribution license="cc4" from="Microsoft" modified="false" />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>
- <typeparam name="TSource">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of the input sequences.</typeparam>
- </Docs>
- </Member>
- <Member MemberName="Except<TSource>">
- <MemberSignature Language="C#" Value="public static System.Linq.IQueryable<TSource> Except<TSource> (this System.Linq.IQueryable<TSource> source1, System.Collections.Generic.IEnumerable<TSource> source2, System.Collections.Generic.IEqualityComparer<TSource> comparer);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig class System.Linq.IQueryable`1<!!TSource> Except<TSource>(class System.Linq.IQueryable`1<!!TSource> source1, class System.Collections.Generic.IEnumerable`1<!!TSource> source2, class System.Collections.Generic.IEqualityComparer`1<!!TSource> comparer) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Linq.IQueryable<TSource></ReturnType>
- </ReturnValue>
- <TypeParameters>
- <TypeParameter Name="TSource" />
- </TypeParameters>
- <Parameters>
- <Parameter Name="source1" Type="System.Linq.IQueryable<TSource>" RefType="this" />
- <Parameter Name="source2" Type="System.Collections.Generic.IEnumerable<TSource>" />
- <Parameter Name="comparer" Type="System.Collections.Generic.IEqualityComparer<TSource>" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The <see cref="M:System.Linq.Queryable.Except``1(System.Linq.IQueryable{``0},System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEqualityComparer{``0})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.Except``1(System.Linq.IQueryable{``0},System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEqualityComparer{``0})" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.CreateQuery``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the<paramref name="source1" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.Except``1(System.Linq.IQueryable{``0},System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEqualityComparer{``0})" /> depends on the implementation of the type of the <paramref name="source1" /> parameter. The expected behavior is that all the elements in <paramref name="source1" /> are returned except for those that are also in <paramref name="source2" />, and <paramref name="comparer" /> is used to compare values.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>Produces the set difference of two sequences by using the specified <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> to compare values.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>An <see cref="T:System.Linq.IQueryable`1" /> that contains the set difference of the two sequences.</para>
- </returns>
- <param name="source1">
- <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.Linq.IQueryable`1" /> whose elements that are not also in <paramref name="source2" /> will be returned.</param>
- <param name="source2">
- <attribution license="cc4" from="Microsoft" modified="false" />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>
- <param name="comparer">
- <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> to compare values.</param>
- <typeparam name="TSource">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of the input sequences.</typeparam>
- </Docs>
- </Member>
- <Member MemberName="First<TSource>">
- <MemberSignature Language="C#" Value="public static TSource First<TSource> (this System.Linq.IQueryable<TSource> source);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig !!TSource First<TSource>(class System.Linq.IQueryable`1<!!TSource> source) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>TSource</ReturnType>
- </ReturnValue>
- <TypeParameters>
- <TypeParameter Name="TSource" />
- </TypeParameters>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IQueryable<TSource>" RefType="this" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The <see cref="M:System.Linq.Queryable.First``1(System.Linq.IQueryable{``0})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.First``1(System.Linq.IQueryable{``0})" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.Execute``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.First``1(System.Linq.IQueryable{``0})" /> depends on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that it returns the first element in <paramref name="source" />.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>Returns the first element of a sequence.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The first element in <paramref name="source" />.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Linq.IQueryable`1" /> to return the first element of.</param>
- <typeparam name="TSource">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of <paramref name="source" />.</typeparam>
- </Docs>
- </Member>
- <Member MemberName="First<TSource>">
- <MemberSignature Language="C#" Value="public static TSource First<TSource> (this System.Linq.IQueryable<TSource> source, System.Linq.Expressions.Expression<Func<TSource,bool>> predicate);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig !!TSource First<TSource>(class System.Linq.IQueryable`1<!!TSource> source, class System.Linq.Expressions.Expression`1<class System.Func`2<!!TSource, bool>> predicate) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>TSource</ReturnType>
- </ReturnValue>
- <TypeParameters>
- <TypeParameter Name="TSource" />
- </TypeParameters>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IQueryable<TSource>" RefType="this" />
- <Parameter Name="predicate" Type="System.Linq.Expressions.Expression<System.Func<TSource,System.Boolean>>" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>This method has at least one parameter of type <see cref="T:System.Linq.Expressions.Expression`1" /> whose type argument is one of the <see cref="T:System.Func`2" /> types. For these parameters, you can pass in a lambda expression and it will be compiled to an <see cref="T:System.Linq.Expressions.Expression`1" />.</para>
- <para>The <see cref="M:System.Linq.Queryable.First``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.First``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}})" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.Execute``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.First``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}})" /> depends on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that it returns the first element in <paramref name="source" /> that satisfies the condition specified by <paramref name="predicate" />.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>Returns the first element of a sequence that satisfies a specified condition.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The first element in <paramref name="source" /> that passes the test in <paramref name="predicate" />.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.Linq.IQueryable`1" /> to return an element from.</param>
- <param name="predicate">
- <attribution license="cc4" from="Microsoft" modified="false" />A function to test each element for a condition.</param>
- <typeparam name="TSource">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of <paramref name="source" />.</typeparam>
- </Docs>
- </Member>
- <Member MemberName="FirstOrDefault<TSource>">
- <MemberSignature Language="C#" Value="public static TSource FirstOrDefault<TSource> (this System.Linq.IQueryable<TSource> source);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig !!TSource FirstOrDefault<TSource>(class System.Linq.IQueryable`1<!!TSource> source) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>TSource</ReturnType>
- </ReturnValue>
- <TypeParameters>
- <TypeParameter Name="TSource" />
- </TypeParameters>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IQueryable<TSource>" RefType="this" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The <see cref="M:System.Linq.Queryable.FirstOrDefault``1(System.Linq.IQueryable{``0})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.FirstOrDefault``1(System.Linq.IQueryable{``0})" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.Execute``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.FirstOrDefault``1(System.Linq.IQueryable{``0})" /> depends on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that it returns the first element in <paramref name="source" />, or a default value if <paramref name="source" /> is empty.</para>
- <para>The <see cref="Overload:System.Linq.Queryable.FirstOrDefault" /> method does not provide a way to specify the default value to return if <paramref name="source" /> is empty. If you want to specify a default value other than default(<paramref name="TSource" />), use the <see cref="M:System.Linq.Queryable.DefaultIfEmpty``1(System.Linq.IQueryable{``0},``0)" /> method as described in the Example section.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>Returns the first element of a sequence, or a default value if the sequence contains no elements.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>
- <unmanagedCodeEntityReference>default</unmanagedCodeEntityReference>(<paramref name="TSource" />) if <paramref name="source" /> is empty; otherwise, the first element in <paramref name="source" />.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Linq.IQueryable`1" /> to return the first element of.</param>
- <typeparam name="TSource">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of <paramref name="source" />.</typeparam>
- </Docs>
- </Member>
- <Member MemberName="FirstOrDefault<TSource>">
- <MemberSignature Language="C#" Value="public static TSource FirstOrDefault<TSource> (this System.Linq.IQueryable<TSource> source, System.Linq.Expressions.Expression<Func<TSource,bool>> predicate);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig !!TSource FirstOrDefault<TSource>(class System.Linq.IQueryable`1<!!TSource> source, class System.Linq.Expressions.Expression`1<class System.Func`2<!!TSource, bool>> predicate) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>TSource</ReturnType>
- </ReturnValue>
- <TypeParameters>
- <TypeParameter Name="TSource" />
- </TypeParameters>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IQueryable<TSource>" RefType="this" />
- <Parameter Name="predicate" Type="System.Linq.Expressions.Expression<System.Func<TSource,System.Boolean>>" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>This method has at least one parameter of type <see cref="T:System.Linq.Expressions.Expression`1" /> whose type argument is one of the <see cref="T:System.Func`2" /> types. For these parameters, you can pass in a lambda expression and it will be compiled to an <see cref="T:System.Linq.Expressions.Expression`1" />.</para>
- <para>The <see cref="M:System.Linq.Queryable.FirstOrDefault``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.FirstOrDefault``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}})" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.Execute``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.FirstOrDefault``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}})" /> depends on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that it returns the first element in <paramref name="source" /> that satisfies the condition in <paramref name="predicate" />, or a default value if no element satisfies the condition.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>Returns the first element of a sequence that satisfies a specified condition or a default value if no such element is found.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>
- <unmanagedCodeEntityReference>default</unmanagedCodeEntityReference>(<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" />.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.Linq.IQueryable`1" /> to return an element from.</param>
- <param name="predicate">
- <attribution license="cc4" from="Microsoft" modified="false" />A function to test each element for a condition.</param>
- <typeparam name="TSource">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of <paramref name="source" />.</typeparam>
- </Docs>
- </Member>
- <Member MemberName="GroupBy<TSource,TKey>">
- <MemberSignature Language="C#" Value="public static System.Linq.IQueryable<System.Linq.IGrouping<TKey,TSource>> GroupBy<TSource,TKey> (this System.Linq.IQueryable<TSource> source, System.Linq.Expressions.Expression<Func<TSource,TKey>> keySelector);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig class System.Linq.IQueryable`1<class System.Linq.IGrouping`2<!!TKey, !!TSource>> GroupBy<TSource, TKey>(class System.Linq.IQueryable`1<!!TSource> source, class System.Linq.Expressions.Expression`1<class System.Func`2<!!TSource, !!TKey>> keySelector) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Linq.IQueryable<System.Linq.IGrouping<TKey,TSource>></ReturnType>
- </ReturnValue>
- <TypeParameters>
- <TypeParameter Name="TSource" />
- <TypeParameter Name="TKey" />
- </TypeParameters>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IQueryable<TSource>" RefType="this" />
- <Parameter Name="keySelector" Type="System.Linq.Expressions.Expression<System.Func<TSource,TKey>>" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>This method has at least one parameter of type <see cref="T:System.Linq.Expressions.Expression`1" /> whose type argument is one of the <see cref="T:System.Func`2" /> types. For these parameters, you can pass in a lambda expression and it will be compiled to an <see cref="T:System.Linq.Expressions.Expression`1" />.</para>
- <para>The <see cref="M:System.Linq.Queryable.GroupBy``2(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.GroupBy``2(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}})" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.CreateQuery``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.GroupBy``2(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}})" /> depends on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that it groups the elements of <paramref name="source" /> by a key value that is obtained by invoking <paramref name="keySelector" /> on each element.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>Groups the elements of a sequence according to a specified key selector function.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>An <unmanagedCodeEntityReference>IQueryable<IGrouping<TKey, TSource>></unmanagedCodeEntityReference> in C# or <unmanagedCodeEntityReference>IQueryable(Of IGrouping(Of TKey, TSource))</unmanagedCodeEntityReference> in vbprvb where each <see cref="T:System.Linq.IGrouping`2" /> object contains a sequence of objects and a key.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.Linq.IQueryable`1" /> whose elements to group.</param>
- <param name="keySelector">
- <attribution license="cc4" from="Microsoft" modified="false" />A function to extract the key for each element.</param>
- <typeparam name="TSource">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of <paramref name="source" />.</typeparam>
- <typeparam name="TKey">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the key returned by the function represented in <paramref name="keySelector" />.</typeparam>
- </Docs>
- </Member>
- <Member MemberName="GroupBy<TSource,TKey>">
- <MemberSignature Language="C#" Value="public static System.Linq.IQueryable<System.Linq.IGrouping<TKey,TSource>> GroupBy<TSource,TKey> (this System.Linq.IQueryable<TSource> source, System.Linq.Expressions.Expression<Func<TSource,TKey>> keySelector, System.Collections.Generic.IEqualityComparer<TKey> comparer);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig class System.Linq.IQueryable`1<class System.Linq.IGrouping`2<!!TKey, !!TSource>> GroupBy<TSource, TKey>(class System.Linq.IQueryable`1<!!TSource> source, class System.Linq.Expressions.Expression`1<class System.Func`2<!!TSource, !!TKey>> keySelector, class System.Collections.Generic.IEqualityComparer`1<!!TKey> comparer) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Linq.IQueryable<System.Linq.IGrouping<TKey,TSource>></ReturnType>
- </ReturnValue>
- <TypeParameters>
- <TypeParameter Name="TSource" />
- <TypeParameter Name="TKey" />
- </TypeParameters>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IQueryable<TSource>" RefType="this" />
- <Parameter Name="keySelector" Type="System.Linq.Expressions.Expression<System.Func<TSource,TKey>>" />
- <Parameter Name="comparer" Type="System.Collections.Generic.IEqualityComparer<TKey>" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>This method has at least one parameter of type <see cref="T:System.Linq.Expressions.Expression`1" /> whose type argument is one of the <see cref="T:System.Func`2" /> types. For these parameters, you can pass in a lambda expression and it will be compiled to an <see cref="T:System.Linq.Expressions.Expression`1" />.</para>
- <para>The <see cref="M:System.Linq.Queryable.GroupBy``2(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}},System.Collections.Generic.IEqualityComparer{``1})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.GroupBy``2(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}},System.Collections.Generic.IEqualityComparer{``1})" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.CreateQuery``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.GroupBy``2(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}},System.Collections.Generic.IEqualityComparer{``1})" /> depends on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that it groups the elements of <paramref name="source" /> by a key value. The key value is obtained by invoking <paramref name="keySelector" /> on each element, and key values are compared by using <paramref name="comparer" />.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>Groups the elements of a sequence according to a specified key selector function and compares the keys by using a specified comparer.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>An <unmanagedCodeEntityReference>IQueryable<IGrouping<TKey, TSource>></unmanagedCodeEntityReference> in C# or <unmanagedCodeEntityReference>IQueryable(Of IGrouping(Of TKey, TSource))</unmanagedCodeEntityReference> in vbprvb where each <see cref="T:System.Linq.IGrouping`2" /> contains a sequence of objects and a key.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.Linq.IQueryable`1" /> whose elements to group.</param>
- <param name="keySelector">
- <attribution license="cc4" from="Microsoft" modified="false" />A function to extract the key for each element.</param>
- <param name="comparer">
- <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> to compare keys.</param>
- <typeparam name="TSource">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of <paramref name="source" />.</typeparam>
- <typeparam name="TKey">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the key returned by the function represented in <paramref name="keySelector" />.</typeparam>
- </Docs>
- </Member>
- <Member MemberName="GroupBy<TSource,TKey,TElement>">
- <MemberSignature Language="C#" Value="public static System.Linq.IQueryable<System.Linq.IGrouping<TKey,TElement>> GroupBy<TSource,TKey,TElement> (this System.Linq.IQueryable<TSource> source, System.Linq.Expressions.Expression<Func<TSource,TKey>> keySelector, System.Linq.Expressions.Expression<Func<TSource,TElement>> elementSelector);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig class System.Linq.IQueryable`1<class System.Linq.IGrouping`2<!!TKey, !!TElement>> GroupBy<TSource, TKey, TElement>(class System.Linq.IQueryable`1<!!TSource> source, class System.Linq.Expressions.Expression`1<class System.Func`2<!!TSource, !!TKey>> keySelector, class System.Linq.Expressions.Expression`1<class System.Func`2<!!TSource, !!TElement>> elementSelector) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Linq.IQueryable<System.Linq.IGrouping<TKey,TElement>></ReturnType>
- </ReturnValue>
- <TypeParameters>
- <TypeParameter Name="TSource" />
- <TypeParameter Name="TKey" />
- <TypeParameter Name="TElement" />
- </TypeParameters>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IQueryable<TSource>" RefType="this" />
- <Parameter Name="keySelector" Type="System.Linq.Expressions.Expression<System.Func<TSource,TKey>>" />
- <Parameter Name="elementSelector" Type="System.Linq.Expressions.Expression<System.Func<TSource,TElement>>" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>This method has at least one parameter of type <see cref="T:System.Linq.Expressions.Expression`1" /> whose type argument is one of the <see cref="T:System.Func`2" /> types. For these parameters, you can pass in a lambda expression and it will be compiled to an <see cref="T:System.Linq.Expressions.Expression`1" />.</para>
- <para>The <see cref="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}})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="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}})" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.CreateQuery``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="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}})" /> depends on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that it groups the elements of <paramref name="source" /> by a key value that is obtained by invoking <paramref name="keySelector" /> on each element. It invokes <paramref name="elementSelector" /> on each element to obtain a result element.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>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.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>An <unmanagedCodeEntityReference>IQueryable<IGrouping<TKey, TElement>></unmanagedCodeEntityReference> in C# or <unmanagedCodeEntityReference>IQueryable(Of IGrouping(Of TKey, TElement))</unmanagedCodeEntityReference> in vbprvb where each <see cref="T:System.Linq.IGrouping`2" /> contains a sequence of objects of type <paramref name="TElement" /> and a key.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.Linq.IQueryable`1" /> whose elements to group.</param>
- <param name="keySelector">
- <attribution license="cc4" from="Microsoft" modified="false" />A function to extract the key for each element.</param>
- <param name="elementSelector">
- <attribution license="cc4" from="Microsoft" modified="false" />A function to map each source element to an element in an <see cref="T:System.Linq.IGrouping`2" />.</param>
- <typeparam name="TSource">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of <paramref name="source" />.</typeparam>
- <typeparam name="TKey">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the key returned by the function represented in <paramref name="keySelector" />.</typeparam>
- <typeparam name="TElement">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements in each <see cref="T:System.Linq.IGrouping`2" />.</typeparam>
- </Docs>
- </Member>
- <Member MemberName="GroupBy<TSource,TKey,TElement>">
- <MemberSignature Language="C#" Value="public static System.Linq.IQueryable<System.Linq.IGrouping<TKey,TElement>> GroupBy<TSource,TKey,TElement> (this System.Linq.IQueryable<TSource> source, System.Linq.Expressions.Expression<Func<TSource,TKey>> keySelector, System.Linq.Expressions.Expression<Func<TSource,TElement>> elementSelector, System.Collections.Generic.IEqualityComparer<TKey> comparer);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig class System.Linq.IQueryable`1<class System.Linq.IGrouping`2<!!TKey, !!TElement>> GroupBy<TSource, TKey, TElement>(class System.Linq.IQueryable`1<!!TSource> source, class System.Linq.Expressions.Expression`1<class System.Func`2<!!TSource, !!TKey>> keySelector, class System.Linq.Expressions.Expression`1<class System.Func`2<!!TSource, !!TElement>> elementSelector, class System.Collections.Generic.IEqualityComparer`1<!!TKey> comparer) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Linq.IQueryable<System.Linq.IGrouping<TKey,TElement>></ReturnType>
- </ReturnValue>
- <TypeParameters>
- <TypeParameter Name="TSource" />
- <TypeParameter Name="TKey" />
- <TypeParameter Name="TElement" />
- </TypeParameters>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IQueryable<TSource>" RefType="this" />
- <Parameter Name="keySelector" Type="System.Linq.Expressions.Expression<System.Func<TSource,TKey>>" />
- <Parameter Name="elementSelector" Type="System.Linq.Expressions.Expression<System.Func<TSource,TElement>>" />
- <Parameter Name="comparer" Type="System.Collections.Generic.IEqualityComparer<TKey>" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>This method has at least one parameter of type <see cref="T:System.Linq.Expressions.Expression`1" /> whose type argument is one of the <see cref="T:System.Func`2" /> types. For these parameters, you can pass in a lambda expression and it will be compiled to an <see cref="T:System.Linq.Expressions.Expression`1" />.</para>
- <para>The <see cref="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})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="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})" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.CreateQuery``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="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})" /> depends on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that it groups the elements of <paramref name="source" /> by a key value that is obtained by invoking <paramref name="keySelector" /> on each element. Key values are compared by using <paramref name="comparer" />. The <paramref name="elementSelector" /> parameter is invoked on each element to obtain a result element.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>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.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>An <unmanagedCodeEntityReference>IQueryable<IGrouping<TKey, TElement>></unmanagedCodeEntityReference> in C# or <unmanagedCodeEntityReference>IQueryable(Of IGrouping(Of TKey, TElement))</unmanagedCodeEntityReference> in vbprvb where each <see cref="T:System.Linq.IGrouping`2" /> contains a sequence of objects of type <paramref name="TElement" /> and a key.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.Linq.IQueryable`1" /> whose elements to group.</param>
- <param name="keySelector">
- <attribution license="cc4" from="Microsoft" modified="false" />A function to extract the key for each element.</param>
- <param name="elementSelector">
- <attribution license="cc4" from="Microsoft" modified="false" />A function to map each source element to an element in an <see cref="T:System.Linq.IGrouping`2" />.</param>
- <param name="comparer">
- <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> to compare keys.</param>
- <typeparam name="TSource">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of <paramref name="source" />.</typeparam>
- <typeparam name="TKey">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the key returned by the function represented in <paramref name="keySelector" />.</typeparam>
- <typeparam name="TElement">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements in each <see cref="T:System.Linq.IGrouping`2" />.</typeparam>
- </Docs>
- </Member>
- <Member MemberName="GroupBy<TSource,TKey,TResult>">
- <MemberSignature Language="C#" Value="public static System.Linq.IQueryable<TResult> GroupBy<TSource,TKey,TResult> (this System.Linq.IQueryable<TSource> source, System.Linq.Expressions.Expression<Func<TSource,TKey>> keySelector, System.Linq.Expressions.Expression<Func<TKey,System.Collections.Generic.IEnumerable<TSource>,TResult>> resultSelector);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig class System.Linq.IQueryable`1<!!TResult> GroupBy<TSource, TKey, TResult>(class System.Linq.IQueryable`1<!!TSource> source, class System.Linq.Expressions.Expression`1<class System.Func`2<!!TSource, !!TKey>> keySelector, class System.Linq.Expressions.Expression`1<class System.Func`3<!!TKey, class System.Collections.Generic.IEnumerable`1<!!TSource>, !!TResult>> resultSelector) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Linq.IQueryable<TResult></ReturnType>
- </ReturnValue>
- <TypeParameters>
- <TypeParameter Name="TSource" />
- <TypeParameter Name="TKey" />
- <TypeParameter Name="TResult" />
- </TypeParameters>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IQueryable<TSource>" RefType="this" />
- <Parameter Name="keySelector" Type="System.Linq.Expressions.Expression<System.Func<TSource,TKey>>" />
- <Parameter Name="resultSelector" Type="System.Linq.Expressions.Expression<System.Func<TKey,System.Collections.Generic.IEnumerable<TSource>,TResult>>" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>This method has at least one parameter of type <see cref="T:System.Linq.Expressions.Expression`1" /> whose type argument is one of the <see cref="T:System.Func`2" /> types. For these parameters, you can pass in a lambda expression and it will be compiled to an <see cref="T:System.Linq.Expressions.Expression`1" />.</para>
- <para>The <see cref="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}})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="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}})" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.CreateQuery``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="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}})" /> depends on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that it groups the elements of <paramref name="source" /> by a key value that is obtained by invoking <paramref name="keySelector" /> on each element. The <paramref name="resultSelector" /> parameter is used to obtain a result value from each group and its key.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>Groups the elements of a sequence according to a specified key selector function and creates a result value from each group and its key.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>An <unmanagedCodeEntityReference>T:System.Linq.IQueryable`1</unmanagedCodeEntityReference> that has a type argument of <paramref name="TResult" /> and where each element represents a projection over a group and its key.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.Linq.IQueryable`1" /> whose elements to group.</param>
- <param name="keySelector">
- <attribution license="cc4" from="Microsoft" modified="false" />A function to extract the key for each element.</param>
- <param name="resultSelector">
- <attribution license="cc4" from="Microsoft" modified="false" />A function to create a result value from each group.</param>
- <typeparam name="TSource">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of <paramref name="source" />.</typeparam>
- <typeparam name="TKey">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the key returned by the function represented in <paramref name="keySelector" />.</typeparam>
- <typeparam name="TResult">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the result value returned by <paramref name="resultSelector" />.</typeparam>
- </Docs>
- </Member>
- <Member MemberName="GroupBy<TSource,TKey,TResult>">
- <MemberSignature Language="C#" Value="public static System.Linq.IQueryable<TResult> GroupBy<TSource,TKey,TResult> (this System.Linq.IQueryable<TSource> source, System.Linq.Expressions.Expression<Func<TSource,TKey>> keySelector, System.Linq.Expressions.Expression<Func<TKey,System.Collections.Generic.IEnumerable<TSource>,TResult>> resultSelector, System.Collections.Generic.IEqualityComparer<TKey> comparer);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig class System.Linq.IQueryable`1<!!TResult> GroupBy<TSource, TKey, TResult>(class System.Linq.IQueryable`1<!!TSource> source, class System.Linq.Expressions.Expression`1<class System.Func`2<!!TSource, !!TKey>> keySelector, class System.Linq.Expressions.Expression`1<class System.Func`3<!!TKey, class System.Collections.Generic.IEnumerable`1<!!TSource>, !!TResult>> resultSelector, class System.Collections.Generic.IEqualityComparer`1<!!TKey> comparer) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Linq.IQueryable<TResult></ReturnType>
- </ReturnValue>
- <TypeParameters>
- <TypeParameter Name="TSource" />
- <TypeParameter Name="TKey" />
- <TypeParameter Name="TResult" />
- </TypeParameters>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IQueryable<TSource>" RefType="this" />
- <Parameter Name="keySelector" Type="System.Linq.Expressions.Expression<System.Func<TSource,TKey>>" />
- <Parameter Name="resultSelector" Type="System.Linq.Expressions.Expression<System.Func<TKey,System.Collections.Generic.IEnumerable<TSource>,TResult>>" />
- <Parameter Name="comparer" Type="System.Collections.Generic.IEqualityComparer<TKey>" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>This method has at least one parameter of type <see cref="T:System.Linq.Expressions.Expression`1" /> whose type argument is one of the <see cref="T:System.Func`2" /> types. For these parameters, you can pass in a lambda expression and it will be compiled to an <see cref="T:System.Linq.Expressions.Expression`1" />.</para>
- <para>The <see cref="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})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="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})" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.CreateQuery``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="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})" /> depends on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that it groups the elements of <paramref name="source" /> by key values that are obtained by invoking <paramref name="keySelector" /> on each element. The <paramref name="comparer" /> parameter is used to compare keys and the <paramref name="resultSelector" /> parameter is used to obtain a result value from each group and its key.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>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.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>An <unmanagedCodeEntityReference>T:System.Linq.IQueryable`1</unmanagedCodeEntityReference> that has a type argument of <paramref name="TResult" /> and where each element represents a projection over a group and its key.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.Linq.IQueryable`1" /> whose elements to group.</param>
- <param name="keySelector">
- <attribution license="cc4" from="Microsoft" modified="false" />A function to extract the key for each element.</param>
- <param name="resultSelector">
- <attribution license="cc4" from="Microsoft" modified="false" />A function to create a result value from each group.</param>
- <param name="comparer">
- <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> to compare keys.</param>
- <typeparam name="TSource">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of <paramref name="source" />.</typeparam>
- <typeparam name="TKey">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the key returned by the function represented in <paramref name="keySelector" />.</typeparam>
- <typeparam name="TResult">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the result value returned by <paramref name="resultSelector" />.</typeparam>
- </Docs>
- </Member>
- <Member MemberName="GroupBy<TSource,TKey,TElement,TResult>">
- <MemberSignature Language="C#" Value="public static System.Linq.IQueryable<TResult> GroupBy<TSource,TKey,TElement,TResult> (this System.Linq.IQueryable<TSource> source, System.Linq.Expressions.Expression<Func<TSource,TKey>> keySelector, System.Linq.Expressions.Expression<Func<TSource,TElement>> elementSelector, System.Linq.Expressions.Expression<Func<TKey,System.Collections.Generic.IEnumerable<TElement>,TResult>> resultSelector);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig class System.Linq.IQueryable`1<!!TResult> GroupBy<TSource, TKey, TElement, TResult>(class System.Linq.IQueryable`1<!!TSource> source, class System.Linq.Expressions.Expression`1<class System.Func`2<!!TSource, !!TKey>> keySelector, class System.Linq.Expressions.Expression`1<class System.Func`2<!!TSource, !!TElement>> elementSelector, class System.Linq.Expressions.Expression`1<class System.Func`3<!!TKey, class System.Collections.Generic.IEnumerable`1<!!TElement>, !!TResult>> resultSelector) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Linq.IQueryable<TResult></ReturnType>
- </ReturnValue>
- <TypeParameters>
- <TypeParameter Name="TSource" />
- <TypeParameter Name="TKey" />
- <TypeParameter Name="TElement" />
- <TypeParameter Name="TResult" />
- </TypeParameters>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IQueryable<TSource>" RefType="this" />
- <Parameter Name="keySelector" Type="System.Linq.Expressions.Expression<System.Func<TSource,TKey>>" />
- <Parameter Name="elementSelector" Type="System.Linq.Expressions.Expression<System.Func<TSource,TElement>>" />
- <Parameter Name="resultSelector" Type="System.Linq.Expressions.Expression<System.Func<TKey,System.Collections.Generic.IEnumerable<TElement>,TResult>>" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>This method has at least one parameter of type <see cref="T:System.Linq.Expressions.Expression`1" /> whose type argument is one of the <see cref="T:System.Func`2" /> types. For these parameters, you can pass in a lambda expression and it will be compiled to an <see cref="T:System.Linq.Expressions.Expression`1" />.</para>
- <para>The <see cref="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}})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="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}})" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.CreateQuery``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="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}})" /> depends on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that it groups the elements of <paramref name="source" /> by key values that are obtained by invoking <paramref name="keySelector" /> on each element. The <paramref name="elementSelector" /> parameter is used to project the elements of each group, and the <paramref name="resultSelector" /> parameter is used to obtain a result value from each group and its key.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>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.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>An <unmanagedCodeEntityReference>T:System.Linq.IQueryable`1</unmanagedCodeEntityReference> that has a type argument of <paramref name="TResult" /> and where each element represents a projection over a group and its key.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.Linq.IQueryable`1" /> whose elements to group.</param>
- <param name="keySelector">
- <attribution license="cc4" from="Microsoft" modified="false" />A function to extract the key for each element.</param>
- <param name="elementSelector">
- <attribution license="cc4" from="Microsoft" modified="false" />A function to map each source element to an element in an <see cref="T:System.Linq.IGrouping`2" />.</param>
- <param name="resultSelector">
- <attribution license="cc4" from="Microsoft" modified="false" />A function to create a result value from each group.</param>
- <typeparam name="TSource">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of <paramref name="source" />.</typeparam>
- <typeparam name="TKey">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the key returned by the function represented in <paramref name="keySelector" />.</typeparam>
- <typeparam name="TElement">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements in each <see cref="T:System.Linq.IGrouping`2" />.</typeparam>
- <typeparam name="TResult">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the result value returned by <paramref name="resultSelector" />.</typeparam>
- </Docs>
- </Member>
- <Member MemberName="GroupBy<TSource,TKey,TElement,TResult>">
- <MemberSignature Language="C#" Value="public static System.Linq.IQueryable<TResult> GroupBy<TSource,TKey,TElement,TResult> (this System.Linq.IQueryable<TSource> source, System.Linq.Expressions.Expression<Func<TSource,TKey>> keySelector, System.Linq.Expressions.Expression<Func<TSource,TElement>> elementSelector, System.Linq.Expressions.Expression<Func<TKey,System.Collections.Generic.IEnumerable<TElement>,TResult>> resultSelector, System.Collections.Generic.IEqualityComparer<TKey> comparer);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig class System.Linq.IQueryable`1<!!TResult> GroupBy<TSource, TKey, TElement, TResult>(class System.Linq.IQueryable`1<!!TSource> source, class System.Linq.Expressions.Expression`1<class System.Func`2<!!TSource, !!TKey>> keySelector, class System.Linq.Expressions.Expression`1<class System.Func`2<!!TSource, !!TElement>> elementSelector, class System.Linq.Expressions.Expression`1<class System.Func`3<!!TKey, class System.Collections.Generic.IEnumerable`1<!!TElement>, !!TResult>> resultSelector, class System.Collections.Generic.IEqualityComparer`1<!!TKey> comparer) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Linq.IQueryable<TResult></ReturnType>
- </ReturnValue>
- <TypeParameters>
- <TypeParameter Name="TSource" />
- <TypeParameter Name="TKey" />
- <TypeParameter Name="TElement" />
- <TypeParameter Name="TResult" />
- </TypeParameters>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IQueryable<TSource>" RefType="this" />
- <Parameter Name="keySelector" Type="System.Linq.Expressions.Expression<System.Func<TSource,TKey>>" />
- <Parameter Name="elementSelector" Type="System.Linq.Expressions.Expression<System.Func<TSource,TElement>>" />
- <Parameter Name="resultSelector" Type="System.Linq.Expressions.Expression<System.Func<TKey,System.Collections.Generic.IEnumerable<TElement>,TResult>>" />
- <Parameter Name="comparer" Type="System.Collections.Generic.IEqualityComparer<TKey>" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>This method has at least one parameter of type <see cref="T:System.Linq.Expressions.Expression`1" /> whose type argument is one of the <see cref="T:System.Func`2" /> types. For these parameters, you can pass in a lambda expression and it will be compiled to an <see cref="T:System.Linq.Expressions.Expression`1" />.</para>
- <para>The <see cref="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})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="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})" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.CreateQuery``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="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})" /> depends on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that it groups the elements of <paramref name="source" /> by key values that are obtained by invoking <paramref name="keySelector" /> on each element. The <paramref name="comparer" /> parameter is used to compare key values. The <paramref name="elementSelector" /> parameter is used to project the elements of each group, and the <paramref name="resultSelector" /> parameter is used to obtain a result value from each group and its key.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>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.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>An <unmanagedCodeEntityReference>T:System.Linq.IQueryable`1</unmanagedCodeEntityReference> that has a type argument of <paramref name="TResult" /> and where each element represents a projection over a group and its key.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.Linq.IQueryable`1" /> whose elements to group.</param>
- <param name="keySelector">
- <attribution license="cc4" from="Microsoft" modified="false" />A function to extract the key for each element.</param>
- <param name="elementSelector">
- <attribution license="cc4" from="Microsoft" modified="false" />A function to map each source element to an element in an <see cref="T:System.Linq.IGrouping`2" />.</param>
- <param name="resultSelector">
- <attribution license="cc4" from="Microsoft" modified="false" />A function to create a result value from each group.</param>
- <param name="comparer">
- <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> to compare keys.</param>
- <typeparam name="TSource">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of <paramref name="source" />.</typeparam>
- <typeparam name="TKey">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the key returned by the function represented in <paramref name="keySelector" />.</typeparam>
- <typeparam name="TElement">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements in each <see cref="T:System.Linq.IGrouping`2" />.</typeparam>
- <typeparam name="TResult">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the result value returned by <paramref name="resultSelector" />.</typeparam>
- </Docs>
- </Member>
- <Member MemberName="GroupJoin<TOuter,TInner,TKey,TResult>">
- <MemberSignature Language="C#" Value="public static System.Linq.IQueryable<TResult> GroupJoin<TOuter,TInner,TKey,TResult> (this System.Linq.IQueryable<TOuter> outer, System.Collections.Generic.IEnumerable<TInner> inner, System.Linq.Expressions.Expression<Func<TOuter,TKey>> outerKeySelector, System.Linq.Expressions.Expression<Func<TInner,TKey>> innerKeySelector, System.Linq.Expressions.Expression<Func<TOuter,System.Collections.Generic.IEnumerable<TInner>,TResult>> resultSelector);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig class System.Linq.IQueryable`1<!!TResult> GroupJoin<TOuter, TInner, TKey, TResult>(class System.Linq.IQueryable`1<!!TOuter> outer, class System.Collections.Generic.IEnumerable`1<!!TInner> inner, class System.Linq.Expressions.Expression`1<class System.Func`2<!!TOuter, !!TKey>> outerKeySelector, class System.Linq.Expressions.Expression`1<class System.Func`2<!!TInner, !!TKey>> innerKeySelector, class System.Linq.Expressions.Expression`1<class System.Func`3<!!TOuter, class System.Collections.Generic.IEnumerable`1<!!TInner>, !!TResult>> resultSelector) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Linq.IQueryable<TResult></ReturnType>
- </ReturnValue>
- <TypeParameters>
- <TypeParameter Name="TOuter" />
- <TypeParameter Name="TInner" />
- <TypeParameter Name="TKey" />
- <TypeParameter Name="TResult" />
- </TypeParameters>
- <Parameters>
- <Parameter Name="outer" Type="System.Linq.IQueryable<TOuter>" RefType="this" />
- <Parameter Name="inner" Type="System.Collections.Generic.IEnumerable<TInner>" />
- <Parameter Name="outerKeySelector" Type="System.Linq.Expressions.Expression<System.Func<TOuter,TKey>>" />
- <Parameter Name="innerKeySelector" Type="System.Linq.Expressions.Expression<System.Func<TInner,TKey>>" />
- <Parameter Name="resultSelector" Type="System.Linq.Expressions.Expression<System.Func<TOuter,System.Collections.Generic.IEnumerable<TInner>,TResult>>" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>This method has at least one parameter of type <see cref="T:System.Linq.Expressions.Expression`1" /> whose type argument is one of the <see cref="T:System.Func`2" /> types. For these parameters, you can pass in a lambda expression and it will be compiled to an <see cref="T:System.Linq.Expressions.Expression`1" />.</para>
- <para>The <see cref="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}})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="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}})" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.CreateQuery``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="outer" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="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}})" /> depends on the implementation of the type of the <paramref name="outer" /> parameter. The expected behavior is that the <paramref name="outerKeySelector" /> and <paramref name="innerKeySelector" /> functions are used to extract keys from <paramref name="outer" /> and <paramref name="inner" />, respectively. These keys are compared for equality to match each element in <paramref name="outer" /> with zero or more elements from <paramref name="inner" />. Then the <paramref name="resultSelector" /> function is invoked to project a result object from each group of correlated elements.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>Correlates the elements of two sequences based on key equality and groups the results. The default equality comparer is used to compare keys.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>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.</para>
- </returns>
- <param name="outer">
- <attribution license="cc4" from="Microsoft" modified="false" />The first sequence to join.</param>
- <param name="inner">
- <attribution license="cc4" from="Microsoft" modified="false" />The sequence to join to the first sequence.</param>
- <param name="outerKeySelector">
- <attribution license="cc4" from="Microsoft" modified="false" />A function to extract the join key from each element of the first sequence.</param>
- <param name="innerKeySelector">
- <attribution license="cc4" from="Microsoft" modified="false" />A function to extract the join key from each element of the second sequence.</param>
- <param name="resultSelector">
- <attribution license="cc4" from="Microsoft" modified="false" />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>
- <typeparam name="TOuter">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of the first sequence.</typeparam>
- <typeparam name="TInner">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of the second sequence.</typeparam>
- <typeparam name="TKey">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the keys returned by the key selector functions.</typeparam>
- <typeparam name="TResult">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the result elements.</typeparam>
- </Docs>
- </Member>
- <Member MemberName="GroupJoin<TOuter,TInner,TKey,TResult>">
- <MemberSignature Language="C#" Value="public static System.Linq.IQueryable<TResult> GroupJoin<TOuter,TInner,TKey,TResult> (this System.Linq.IQueryable<TOuter> outer, System.Collections.Generic.IEnumerable<TInner> inner, System.Linq.Expressions.Expression<Func<TOuter,TKey>> outerKeySelector, System.Linq.Expressions.Expression<Func<TInner,TKey>> innerKeySelector, System.Linq.Expressions.Expression<Func<TOuter,System.Collections.Generic.IEnumerable<TInner>,TResult>> resultSelector, System.Collections.Generic.IEqualityComparer<TKey> comparer);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig class System.Linq.IQueryable`1<!!TResult> GroupJoin<TOuter, TInner, TKey, TResult>(class System.Linq.IQueryable`1<!!TOuter> outer, class System.Collections.Generic.IEnumerable`1<!!TInner> inner, class System.Linq.Expressions.Expression`1<class System.Func`2<!!TOuter, !!TKey>> outerKeySelector, class System.Linq.Expressions.Expression`1<class System.Func`2<!!TInner, !!TKey>> innerKeySelector, class System.Linq.Expressions.Expression`1<class System.Func`3<!!TOuter, class System.Collections.Generic.IEnumerable`1<!!TInner>, !!TResult>> resultSelector, class System.Collections.Generic.IEqualityComparer`1<!!TKey> comparer) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Linq.IQueryable<TResult></ReturnType>
- </ReturnValue>
- <TypeParameters>
- <TypeParameter Name="TOuter" />
- <TypeParameter Name="TInner" />
- <TypeParameter Name="TKey" />
- <TypeParameter Name="TResult" />
- </TypeParameters>
- <Parameters>
- <Parameter Name="outer" Type="System.Linq.IQueryable<TOuter>" RefType="this" />
- <Parameter Name="inner" Type="System.Collections.Generic.IEnumerable<TInner>" />
- <Parameter Name="outerKeySelector" Type="System.Linq.Expressions.Expression<System.Func<TOuter,TKey>>" />
- <Parameter Name="innerKeySelector" Type="System.Linq.Expressions.Expression<System.Func<TInner,TKey>>" />
- <Parameter Name="resultSelector" Type="System.Linq.Expressions.Expression<System.Func<TOuter,System.Collections.Generic.IEnumerable<TInner>,TResult>>" />
- <Parameter Name="comparer" Type="System.Collections.Generic.IEqualityComparer<TKey>" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>This method has at least one parameter of type <see cref="T:System.Linq.Expressions.Expression`1" /> whose type argument is one of the <see cref="T:System.Func`2" /> types. For these parameters, you can pass in a lambda expression and it will be compiled to an <see cref="T:System.Linq.Expressions.Expression`1" />.</para>
- <para>The <see cref="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})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="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})" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.CreateQuery``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="outer" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="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})" /> depends on the implementation of the type of the <paramref name="outer" /> parameter. The expected behavior is that the <paramref name="outerKeySelector" /> and <paramref name="innerKeySelector" /> functions are used to extract keys from <paramref name="outer" /> and <paramref name="inner" />, respectively. These keys are compared for equality by using <paramref name="comparer" />. The outcome of the comparisons is used to match each element in <paramref name="outer" /> with zero or more elements from <paramref name="inner" />. Then the <paramref name="resultSelector" /> function is invoked to project a result object from each group of correlated elements.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>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.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>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.</para>
- </returns>
- <param name="outer">
- <attribution license="cc4" from="Microsoft" modified="false" />The first sequence to join.</param>
- <param name="inner">
- <attribution license="cc4" from="Microsoft" modified="false" />The sequence to join to the first sequence.</param>
- <param name="outerKeySelector">
- <attribution license="cc4" from="Microsoft" modified="false" />A function to extract the join key from each element of the first sequence.</param>
- <param name="innerKeySelector">
- <attribution license="cc4" from="Microsoft" modified="false" />A function to extract the join key from each element of the second sequence.</param>
- <param name="resultSelector">
- <attribution license="cc4" from="Microsoft" modified="false" />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>
- <param name="comparer">
- <attribution license="cc4" from="Microsoft" modified="false" />A comparer to hash and compare keys.</param>
- <typeparam name="TOuter">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of the first sequence.</typeparam>
- <typeparam name="TInner">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of the second sequence.</typeparam>
- <typeparam name="TKey">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the keys returned by the key selector functions.</typeparam>
- <typeparam name="TResult">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the result elements.</typeparam>
- </Docs>
- </Member>
- <Member MemberName="Intersect<TSource>">
- <MemberSignature Language="C#" Value="public static System.Linq.IQueryable<TSource> Intersect<TSource> (this System.Linq.IQueryable<TSource> source1, System.Collections.Generic.IEnumerable<TSource> source2);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig class System.Linq.IQueryable`1<!!TSource> Intersect<TSource>(class System.Linq.IQueryable`1<!!TSource> source1, class System.Collections.Generic.IEnumerable`1<!!TSource> source2) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Linq.IQueryable<TSource></ReturnType>
- </ReturnValue>
- <TypeParameters>
- <TypeParameter Name="TSource" />
- </TypeParameters>
- <Parameters>
- <Parameter Name="source1" Type="System.Linq.IQueryable<TSource>" RefType="this" />
- <Parameter Name="source2" Type="System.Collections.Generic.IEnumerable<TSource>" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The <see cref="M:System.Linq.Queryable.Intersect``1(System.Linq.IQueryable{``0},System.Collections.Generic.IEnumerable{``0})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.Intersect``1(System.Linq.IQueryable{``0},System.Collections.Generic.IEnumerable{``0})" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.CreateQuery``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source1" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.Intersect``1(System.Linq.IQueryable{``0},System.Collections.Generic.IEnumerable{``0})" /> depends on the implementation of the type of the <paramref name="source1" /> parameter. The expected behavior is that all the elements in <paramref name="source1" /> that are also in <paramref name="source2" /> are returned.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>Produces the set intersection of two sequences by using the default equality comparer to compare values.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>A sequence that contains the set intersection of the two sequences.</para>
- </returns>
- <param name="source1">
- <attribution license="cc4" from="Microsoft" modified="false" />A sequence whose distinct elements that also appear in <paramref name="source2" /> are returned.</param>
- <param name="source2">
- <attribution license="cc4" from="Microsoft" modified="false" />A sequence whose distinct elements that also appear in the first sequence are returned.</param>
- <typeparam name="TSource">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of the input sequences.</typeparam>
- </Docs>
- </Member>
- <Member MemberName="Intersect<TSource>">
- <MemberSignature Language="C#" Value="public static System.Linq.IQueryable<TSource> Intersect<TSource> (this System.Linq.IQueryable<TSource> source1, System.Collections.Generic.IEnumerable<TSource> source2, System.Collections.Generic.IEqualityComparer<TSource> comparer);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig class System.Linq.IQueryable`1<!!TSource> Intersect<TSource>(class System.Linq.IQueryable`1<!!TSource> source1, class System.Collections.Generic.IEnumerable`1<!!TSource> source2, class System.Collections.Generic.IEqualityComparer`1<!!TSource> comparer) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Linq.IQueryable<TSource></ReturnType>
- </ReturnValue>
- <TypeParameters>
- <TypeParameter Name="TSource" />
- </TypeParameters>
- <Parameters>
- <Parameter Name="source1" Type="System.Linq.IQueryable<TSource>" RefType="this" />
- <Parameter Name="source2" Type="System.Collections.Generic.IEnumerable<TSource>" />
- <Parameter Name="comparer" Type="System.Collections.Generic.IEqualityComparer<TSource>" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The <see cref="M:System.Linq.Queryable.Intersect``1(System.Linq.IQueryable{``0},System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEqualityComparer{``0})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.Intersect``1(System.Linq.IQueryable{``0},System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEqualityComparer{``0})" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.CreateQuery``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source1" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.Intersect``1(System.Linq.IQueryable{``0},System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEqualityComparer{``0})" /> depends on the implementation of the type of the <paramref name="source1" /> parameter. The expected behavior is that all the elements in <paramref name="source1" /> that are also in <paramref name="source2" /> are returned. The <paramref name="comparer" /> parameter is used to compare elements.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>Produces the set intersection of two sequences by using the specified <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> to compare values.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>An <see cref="T:System.Linq.IQueryable`1" /> that contains the set intersection of the two sequences.</para>
- </returns>
- <param name="source1">
- <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.Linq.IQueryable`1" /> whose distinct elements that also appear in <paramref name="source2" /> are returned.</param>
- <param name="source2">
- <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.Collections.Generic.IEnumerable`1" /> whose distinct elements that also appear in the first sequence are returned.</param>
- <param name="comparer">
- <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> to compare values.</param>
- <typeparam name="TSource">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of the input sequences.</typeparam>
- </Docs>
- </Member>
- <Member MemberName="Join<TOuter,TInner,TKey,TResult>">
- <MemberSignature Language="C#" Value="public static System.Linq.IQueryable<TResult> Join<TOuter,TInner,TKey,TResult> (this System.Linq.IQueryable<TOuter> outer, System.Collections.Generic.IEnumerable<TInner> inner, System.Linq.Expressions.Expression<Func<TOuter,TKey>> outerKeySelector, System.Linq.Expressions.Expression<Func<TInner,TKey>> innerKeySelector, System.Linq.Expressions.Expression<Func<TOuter,TInner,TResult>> resultSelector);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig class System.Linq.IQueryable`1<!!TResult> Join<TOuter, TInner, TKey, TResult>(class System.Linq.IQueryable`1<!!TOuter> outer, class System.Collections.Generic.IEnumerable`1<!!TInner> inner, class System.Linq.Expressions.Expression`1<class System.Func`2<!!TOuter, !!TKey>> outerKeySelector, class System.Linq.Expressions.Expression`1<class System.Func`2<!!TInner, !!TKey>> innerKeySelector, class System.Linq.Expressions.Expression`1<class System.Func`3<!!TOuter, !!TInner, !!TResult>> resultSelector) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Linq.IQueryable<TResult></ReturnType>
- </ReturnValue>
- <TypeParameters>
- <TypeParameter Name="TOuter" />
- <TypeParameter Name="TInner" />
- <TypeParameter Name="TKey" />
- <TypeParameter Name="TResult" />
- </TypeParameters>
- <Parameters>
- <Parameter Name="outer" Type="System.Linq.IQueryable<TOuter>" RefType="this" />
- <Parameter Name="inner" Type="System.Collections.Generic.IEnumerable<TInner>" />
- <Parameter Name="outerKeySelector" Type="System.Linq.Expressions.Expression<System.Func<TOuter,TKey>>" />
- <Parameter Name="innerKeySelector" Type="System.Linq.Expressions.Expression<System.Func<TInner,TKey>>" />
- <Parameter Name="resultSelector" Type="System.Linq.Expressions.Expression<System.Func<TOuter,TInner,TResult>>" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>This method has at least one parameter of type <see cref="T:System.Linq.Expressions.Expression`1" /> whose type argument is one of the <see cref="T:System.Func`2" /> types. For these parameters, you can pass in a lambda expression and it will be compiled to an <see cref="T:System.Linq.Expressions.Expression`1" />.</para>
- <para>The <see cref="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}})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="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}})" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.CreateQuery``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="outer" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="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}})" /> depends on the implementation of the type of the <paramref name="outer" /> parameter. The expected behavior is that of an inner join. The <paramref name="outerKeySelector" /> and <paramref name="innerKeySelector" /> functions are used to extract keys from <paramref name="outer" /> and <paramref name="inner" />, respectively. These keys are compared for equality to match elements from each sequence. A pair of elements is stored for each element in <paramref name="inner" /> that matches an element in <paramref name="outer" />. Then the <paramref name="resultSelector" /> function is invoked to project a result object from each pair of matching elements.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>Correlates the elements of two sequences based on matching keys. The default equality comparer is used to compare keys.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>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.</para>
- </returns>
- <param name="outer">
- <attribution license="cc4" from="Microsoft" modified="false" />The first sequence to join.</param>
- <param name="inner">
- <attribution license="cc4" from="Microsoft" modified="false" />The sequence to join to the first sequence.</param>
- <param name="outerKeySelector">
- <attribution license="cc4" from="Microsoft" modified="false" />A function to extract the join key from each element of the first sequence.</param>
- <param name="innerKeySelector">
- <attribution license="cc4" from="Microsoft" modified="false" />A function to extract the join key from each element of the second sequence.</param>
- <param name="resultSelector">
- <attribution license="cc4" from="Microsoft" modified="false" />A function to create a result element from two matching elements.</param>
- <typeparam name="TOuter">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of the first sequence.</typeparam>
- <typeparam name="TInner">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of the second sequence.</typeparam>
- <typeparam name="TKey">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the keys returned by the key selector functions.</typeparam>
- <typeparam name="TResult">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the result elements.</typeparam>
- </Docs>
- </Member>
- <Member MemberName="Join<TOuter,TInner,TKey,TResult>">
- <MemberSignature Language="C#" Value="public static System.Linq.IQueryable<TResult> Join<TOuter,TInner,TKey,TResult> (this System.Linq.IQueryable<TOuter> outer, System.Collections.Generic.IEnumerable<TInner> inner, System.Linq.Expressions.Expression<Func<TOuter,TKey>> outerKeySelector, System.Linq.Expressions.Expression<Func<TInner,TKey>> innerKeySelector, System.Linq.Expressions.Expression<Func<TOuter,TInner,TResult>> resultSelector, System.Collections.Generic.IEqualityComparer<TKey> comparer);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig class System.Linq.IQueryable`1<!!TResult> Join<TOuter, TInner, TKey, TResult>(class System.Linq.IQueryable`1<!!TOuter> outer, class System.Collections.Generic.IEnumerable`1<!!TInner> inner, class System.Linq.Expressions.Expression`1<class System.Func`2<!!TOuter, !!TKey>> outerKeySelector, class System.Linq.Expressions.Expression`1<class System.Func`2<!!TInner, !!TKey>> innerKeySelector, class System.Linq.Expressions.Expression`1<class System.Func`3<!!TOuter, !!TInner, !!TResult>> resultSelector, class System.Collections.Generic.IEqualityComparer`1<!!TKey> comparer) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Linq.IQueryable<TResult></ReturnType>
- </ReturnValue>
- <TypeParameters>
- <TypeParameter Name="TOuter" />
- <TypeParameter Name="TInner" />
- <TypeParameter Name="TKey" />
- <TypeParameter Name="TResult" />
- </TypeParameters>
- <Parameters>
- <Parameter Name="outer" Type="System.Linq.IQueryable<TOuter>" RefType="this" />
- <Parameter Name="inner" Type="System.Collections.Generic.IEnumerable<TInner>" />
- <Parameter Name="outerKeySelector" Type="System.Linq.Expressions.Expression<System.Func<TOuter,TKey>>" />
- <Parameter Name="innerKeySelector" Type="System.Linq.Expressions.Expression<System.Func<TInner,TKey>>" />
- <Parameter Name="resultSelector" Type="System.Linq.Expressions.Expression<System.Func<TOuter,TInner,TResult>>" />
- <Parameter Name="comparer" Type="System.Collections.Generic.IEqualityComparer<TKey>" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>This method has at least one parameter of type <see cref="T:System.Linq.Expressions.Expression`1" /> whose type argument is one of the <see cref="T:System.Func`2" /> types. For these parameters, you can pass in a lambda expression and it will be compiled to an <see cref="T:System.Linq.Expressions.Expression`1" />.</para>
- <para>The <see cref="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})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="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})" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.CreateQuery``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="outer" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="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})" /> depends on the implementation of the type of the <paramref name="outer" /> parameter. The expected behavior is that of an inner join. The <paramref name="outerKeySelector" /> and <paramref name="innerKeySelector" /> functions are used to extract keys from <paramref name="outer" /> and <paramref name="inner" />, respectively. These keys are compared for equality by using <paramref name="comparer" />. The outcome of the comparisons is used to create a matching pair for each element in <paramref name="inner" /> that matches an element in <paramref name="outer" />. Then the <paramref name="resultSelector" /> function is invoked to project a result object from each pair of matching elements.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>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.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>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.</para>
- </returns>
- <param name="outer">
- <attribution license="cc4" from="Microsoft" modified="false" />The first sequence to join.</param>
- <param name="inner">
- <attribution license="cc4" from="Microsoft" modified="false" />The sequence to join to the first sequence.</param>
- <param name="outerKeySelector">
- <attribution license="cc4" from="Microsoft" modified="false" />A function to extract the join key from each element of the first sequence.</param>
- <param name="innerKeySelector">
- <attribution license="cc4" from="Microsoft" modified="false" />A function to extract the join key from each element of the second sequence.</param>
- <param name="resultSelector">
- <attribution license="cc4" from="Microsoft" modified="false" />A function to create a result element from two matching elements.</param>
- <param name="comparer">
- <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> to hash and compare keys.</param>
- <typeparam name="TOuter">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of the first sequence.</typeparam>
- <typeparam name="TInner">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of the second sequence.</typeparam>
- <typeparam name="TKey">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the keys returned by the key selector functions.</typeparam>
- <typeparam name="TResult">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the result elements.</typeparam>
- </Docs>
- </Member>
- <Member MemberName="Last<TSource>">
- <MemberSignature Language="C#" Value="public static TSource Last<TSource> (this System.Linq.IQueryable<TSource> source);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig !!TSource Last<TSource>(class System.Linq.IQueryable`1<!!TSource> source) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>TSource</ReturnType>
- </ReturnValue>
- <TypeParameters>
- <TypeParameter Name="TSource" />
- </TypeParameters>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IQueryable<TSource>" RefType="this" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The <see cref="M:System.Linq.Queryable.Last``1(System.Linq.IQueryable{``0})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.Last``1(System.Linq.IQueryable{``0})" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.Execute``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.Last``1(System.Linq.IQueryable{``0})" /> depends on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that it returns the last element in <paramref name="source" />.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>Returns the last element in a sequence.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The value at the last position in <paramref name="source" />.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.Linq.IQueryable`1" /> to return the last element of.</param>
- <typeparam name="TSource">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of <paramref name="source" />.</typeparam>
- </Docs>
- </Member>
- <Member MemberName="Last<TSource>">
- <MemberSignature Language="C#" Value="public static TSource Last<TSource> (this System.Linq.IQueryable<TSource> source, System.Linq.Expressions.Expression<Func<TSource,bool>> predicate);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig !!TSource Last<TSource>(class System.Linq.IQueryable`1<!!TSource> source, class System.Linq.Expressions.Expression`1<class System.Func`2<!!TSource, bool>> predicate) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>TSource</ReturnType>
- </ReturnValue>
- <TypeParameters>
- <TypeParameter Name="TSource" />
- </TypeParameters>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IQueryable<TSource>" RefType="this" />
- <Parameter Name="predicate" Type="System.Linq.Expressions.Expression<System.Func<TSource,System.Boolean>>" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>This method has at least one parameter of type <see cref="T:System.Linq.Expressions.Expression`1" /> whose type argument is one of the <see cref="T:System.Func`2" /> types. For these parameters, you can pass in a lambda expression and it will be compiled to an <see cref="T:System.Linq.Expressions.Expression`1" />.</para>
- <para>The <see cref="M:System.Linq.Queryable.Last``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.Last``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}})" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.Execute``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.Last``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}})" /> depends on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that it returns the last element in <paramref name="source" /> that satisfies the condition specified by <paramref name="predicate" />.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>Returns the last element of a sequence that satisfies a specified condition.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The last element in <paramref name="source" /> that passes the test specified by <paramref name="predicate" />.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.Linq.IQueryable`1" /> to return an element from.</param>
- <param name="predicate">
- <attribution license="cc4" from="Microsoft" modified="false" />A function to test each element for a condition.</param>
- <typeparam name="TSource">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of <paramref name="source" />.</typeparam>
- </Docs>
- </Member>
- <Member MemberName="LastOrDefault<TSource>">
- <MemberSignature Language="C#" Value="public static TSource LastOrDefault<TSource> (this System.Linq.IQueryable<TSource> source);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig !!TSource LastOrDefault<TSource>(class System.Linq.IQueryable`1<!!TSource> source) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>TSource</ReturnType>
- </ReturnValue>
- <TypeParameters>
- <TypeParameter Name="TSource" />
- </TypeParameters>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IQueryable<TSource>" RefType="this" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The <see cref="M:System.Linq.Queryable.LastOrDefault``1(System.Linq.IQueryable{``0})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.LastOrDefault``1(System.Linq.IQueryable{``0})" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.Execute``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.LastOrDefault``1(System.Linq.IQueryable{``0})" /> depends on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that it returns the last element in <paramref name="source" />, or a default value if <paramref name="source" /> is empty.</para>
- <para>The <see cref="Overload:System.Linq.Queryable.LastOrDefault" /> method does not provide a way to specify a default value. If you want to specify a default value other than default(<paramref name="TSource" />), use the <see cref="M:System.Linq.Queryable.DefaultIfEmpty``1(System.Linq.IQueryable{``0},``0)" /> method as described in the Example section.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>Returns the last element in a sequence, or a default value if the sequence contains no elements.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>
- <unmanagedCodeEntityReference>default</unmanagedCodeEntityReference>(<paramref name="TSource" />) if <paramref name="source" /> is empty; otherwise, the last element in <paramref name="source" />.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.Linq.IQueryable`1" /> to return the last element of.</param>
- <typeparam name="TSource">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of <paramref name="source" />.</typeparam>
- </Docs>
- </Member>
- <Member MemberName="LastOrDefault<TSource>">
- <MemberSignature Language="C#" Value="public static TSource LastOrDefault<TSource> (this System.Linq.IQueryable<TSource> source, System.Linq.Expressions.Expression<Func<TSource,bool>> predicate);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig !!TSource LastOrDefault<TSource>(class System.Linq.IQueryable`1<!!TSource> source, class System.Linq.Expressions.Expression`1<class System.Func`2<!!TSource, bool>> predicate) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>TSource</ReturnType>
- </ReturnValue>
- <TypeParameters>
- <TypeParameter Name="TSource" />
- </TypeParameters>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IQueryable<TSource>" RefType="this" />
- <Parameter Name="predicate" Type="System.Linq.Expressions.Expression<System.Func<TSource,System.Boolean>>" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>This method has at least one parameter of type <see cref="T:System.Linq.Expressions.Expression`1" /> whose type argument is one of the <see cref="T:System.Func`2" /> types. For these parameters, you can pass in a lambda expression and it will be compiled to an <see cref="T:System.Linq.Expressions.Expression`1" />.</para>
- <para>The <see cref="M:System.Linq.Queryable.LastOrDefault``1(System.Linq.IQueryable{``0})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.LastOrDefault``1(System.Linq.IQueryable{``0})" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.Execute``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.LastOrDefault``1(System.Linq.IQueryable{``0})" /> depends on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that it returns the last element in <paramref name="source" /> that satisfies the condition specified by <paramref name="predicate" />. It returns a default value if there is no such element in <paramref name="source" />.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>Returns the last element of a sequence that satisfies a condition or a default value if no such element is found.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>
- <unmanagedCodeEntityReference>default</unmanagedCodeEntityReference>(<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.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.Linq.IQueryable`1" /> to return an element from.</param>
- <param name="predicate">
- <attribution license="cc4" from="Microsoft" modified="false" />A function to test each element for a condition.</param>
- <typeparam name="TSource">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of <paramref name="source" />.</typeparam>
- </Docs>
- </Member>
- <Member MemberName="LongCount<TSource>">
- <MemberSignature Language="C#" Value="public static long LongCount<TSource> (this System.Linq.IQueryable<TSource> source);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig int64 LongCount<TSource>(class System.Linq.IQueryable`1<!!TSource> source) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Int64</ReturnType>
- </ReturnValue>
- <TypeParameters>
- <TypeParameter Name="TSource" />
- </TypeParameters>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IQueryable<TSource>" RefType="this" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The <see cref="M:System.Linq.Queryable.LongCount``1(System.Linq.IQueryable{``0})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.LongCount``1(System.Linq.IQueryable{``0})" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.Execute``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.LongCount``1(System.Linq.IQueryable{``0})" /> depends on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that it counts the number of items in <paramref name="source" /> and returns an <see cref="T:System.Int64" />.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>Returns an <see cref="T:System.Int64" /> that represents the total number of elements in a sequence.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The number of elements in <paramref name="source" />.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.Linq.IQueryable`1" /> that contains the elements to be counted.</param>
- <typeparam name="TSource">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of <paramref name="source" />.</typeparam>
- </Docs>
- </Member>
- <Member MemberName="LongCount<TSource>">
- <MemberSignature Language="C#" Value="public static long LongCount<TSource> (this System.Linq.IQueryable<TSource> source, System.Linq.Expressions.Expression<Func<TSource,bool>> predicate);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig int64 LongCount<TSource>(class System.Linq.IQueryable`1<!!TSource> source, class System.Linq.Expressions.Expression`1<class System.Func`2<!!TSource, bool>> predicate) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Int64</ReturnType>
- </ReturnValue>
- <TypeParameters>
- <TypeParameter Name="TSource" />
- </TypeParameters>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IQueryable<TSource>" RefType="this" />
- <Parameter Name="predicate" Type="System.Linq.Expressions.Expression<System.Func<TSource,System.Boolean>>" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>This method has at least one parameter of type <see cref="T:System.Linq.Expressions.Expression`1" /> whose type argument is one of the <see cref="T:System.Func`2" /> types. For these parameters, you can pass in a lambda expression and it will be compiled to an <see cref="T:System.Linq.Expressions.Expression`1" />.</para>
- <para>The <see cref="M:System.Linq.Queryable.LongCount``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.LongCount``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}})" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.Execute``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.LongCount``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}})" /> depends on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that it counts the number of items in <paramref name="source" /> that satisfy the condition specified by <paramref name="predicate" /> and returns an <see cref="T:System.Int64" />.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>Returns an <see cref="T:System.Int64" /> that represents the number of elements in a sequence that satisfy a condition.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The number of elements in <paramref name="source" /> that satisfy the condition in the predicate function.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.Linq.IQueryable`1" /> that contains the elements to be counted.</param>
- <param name="predicate">
- <attribution license="cc4" from="Microsoft" modified="false" />A function to test each element for a condition.</param>
- <typeparam name="TSource">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of <paramref name="source" />.</typeparam>
- </Docs>
- </Member>
- <Member MemberName="Max<TSource>">
- <MemberSignature Language="C#" Value="public static TSource Max<TSource> (this System.Linq.IQueryable<TSource> source);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig !!TSource Max<TSource>(class System.Linq.IQueryable`1<!!TSource> source) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>TSource</ReturnType>
- </ReturnValue>
- <TypeParameters>
- <TypeParameter Name="TSource" />
- </TypeParameters>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IQueryable<TSource>" RefType="this" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The <see cref="M:System.Linq.Queryable.Max``1(System.Linq.IQueryable{``0})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.Max``1(System.Linq.IQueryable{``0})" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.Execute``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.Max``1(System.Linq.IQueryable{``0})" /> depends on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that it returns the maximum value in <paramref name="source" />.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>Returns the maximum value in a generic <see cref="T:System.Linq.IQueryable`1" />.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The maximum value in the sequence.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />A sequence of values to determine the maximum of.</param>
- <typeparam name="TSource">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of <paramref name="source" />.</typeparam>
- </Docs>
- </Member>
- <Member MemberName="Max<TSource,TResult>">
- <MemberSignature Language="C#" Value="public static TResult Max<TSource,TResult> (this System.Linq.IQueryable<TSource> source, System.Linq.Expressions.Expression<Func<TSource,TResult>> selector);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig !!TResult Max<TSource, TResult>(class System.Linq.IQueryable`1<!!TSource> source, class System.Linq.Expressions.Expression`1<class System.Func`2<!!TSource, !!TResult>> selector) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>TResult</ReturnType>
- </ReturnValue>
- <TypeParameters>
- <TypeParameter Name="TSource" />
- <TypeParameter Name="TResult" />
- </TypeParameters>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IQueryable<TSource>" RefType="this" />
- <Parameter Name="selector" Type="System.Linq.Expressions.Expression<System.Func<TSource,TResult>>" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>This method has at least one parameter of type <see cref="T:System.Linq.Expressions.Expression`1" /> whose type argument is one of the <see cref="T:System.Func`2" /> types. For these parameters, you can pass in a lambda expression and it will be compiled to an <see cref="T:System.Linq.Expressions.Expression`1" />.</para>
- <para>The <see cref="M:System.Linq.Queryable.Max``2(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.Max``2(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}})" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.Execute``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.Max``2(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}})" /> depends on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that it invokes <paramref name="selector" /> on each element in <paramref name="source" /> and returns the maximum value.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>Invokes a projection function on each element of a generic <see cref="T:System.Linq.IQueryable`1" /> and returns the maximum resulting value.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The maximum value in the sequence.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />A sequence of values to determine the maximum of.</param>
- <param name="selector">
- <attribution license="cc4" from="Microsoft" modified="false" />A projection function to apply to each element.</param>
- <typeparam name="TSource">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of <paramref name="source" />.</typeparam>
- <typeparam name="TResult">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the value returned by the function represented by <paramref name="selector" />.</typeparam>
- </Docs>
- </Member>
- <Member MemberName="Min<TSource>">
- <MemberSignature Language="C#" Value="public static TSource Min<TSource> (this System.Linq.IQueryable<TSource> source);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig !!TSource Min<TSource>(class System.Linq.IQueryable`1<!!TSource> source) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>TSource</ReturnType>
- </ReturnValue>
- <TypeParameters>
- <TypeParameter Name="TSource" />
- </TypeParameters>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IQueryable<TSource>" RefType="this" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The <see cref="M:System.Linq.Queryable.Min``1(System.Linq.IQueryable{``0})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.Min``1(System.Linq.IQueryable{``0})" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.Execute``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.Min``1(System.Linq.IQueryable{``0})" /> depends on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that it returns the minimum value in <paramref name="source" />.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>Returns the minimum value of a generic <see cref="T:System.Linq.IQueryable`1" />.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The minimum value in the sequence.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />A sequence of values to determine the minimum of.</param>
- <typeparam name="TSource">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of <paramref name="source" />.</typeparam>
- </Docs>
- </Member>
- <Member MemberName="Min<TSource,TResult>">
- <MemberSignature Language="C#" Value="public static TResult Min<TSource,TResult> (this System.Linq.IQueryable<TSource> source, System.Linq.Expressions.Expression<Func<TSource,TResult>> selector);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig !!TResult Min<TSource, TResult>(class System.Linq.IQueryable`1<!!TSource> source, class System.Linq.Expressions.Expression`1<class System.Func`2<!!TSource, !!TResult>> selector) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>TResult</ReturnType>
- </ReturnValue>
- <TypeParameters>
- <TypeParameter Name="TSource" />
- <TypeParameter Name="TResult" />
- </TypeParameters>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IQueryable<TSource>" RefType="this" />
- <Parameter Name="selector" Type="System.Linq.Expressions.Expression<System.Func<TSource,TResult>>" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>This method has at least one parameter of type <see cref="T:System.Linq.Expressions.Expression`1" /> whose type argument is one of the <see cref="T:System.Func`2" /> types. For these parameters, you can pass in a lambda expression and it will be compiled to an <see cref="T:System.Linq.Expressions.Expression`1" />.</para>
- <para>The <see cref="M:System.Linq.Queryable.Min``2(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.Min``2(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}})" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.Execute``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.Min``2(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}})" /> depends on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that it invokes <paramref name="selector" /> on each element in <paramref name="source" /> and returns the minimum value.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>Invokes a projection function on each element of a generic <see cref="T:System.Linq.IQueryable`1" /> and returns the minimum resulting value.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The minimum value in the sequence.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />A sequence of values to determine the minimum of.</param>
- <param name="selector">
- <attribution license="cc4" from="Microsoft" modified="false" />A projection function to apply to each element.</param>
- <typeparam name="TSource">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of <paramref name="source" />.</typeparam>
- <typeparam name="TResult">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the value returned by the function represented by <paramref name="selector" />.</typeparam>
- </Docs>
- </Member>
- <Member MemberName="OfType<TResult>">
- <MemberSignature Language="C#" Value="public static System.Linq.IQueryable<TResult> OfType<TResult> (this System.Linq.IQueryable source);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig class System.Linq.IQueryable`1<!!TResult> OfType<TResult>(class System.Linq.IQueryable source) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Linq.IQueryable<TResult></ReturnType>
- </ReturnValue>
- <TypeParameters>
- <TypeParameter Name="TResult" />
- </TypeParameters>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IQueryable" RefType="this" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The OfType method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling OfType itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.CreateQuery(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling OfType depends on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that it filters out any elements in <paramref name="source" /> that are not of type <paramref name="TResult" />.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>Filters the elements of an <see cref="T:System.Linq.IQueryable" /> based on a specified type.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>A collection that contains the elements from <paramref name="source" /> that have type <paramref name="TResult" />.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.Linq.IQueryable" /> whose elements to filter.</param>
- <typeparam name="TResult">
- <attribution license="cc4" from="Microsoft" modified="false" />The type to filter the elements of the sequence on.</typeparam>
- </Docs>
- </Member>
- <Member MemberName="OrderBy<TSource,TKey>">
- <MemberSignature Language="C#" Value="public static System.Linq.IOrderedQueryable<TSource> OrderBy<TSource,TKey> (this System.Linq.IQueryable<TSource> source, System.Linq.Expressions.Expression<Func<TSource,TKey>> keySelector);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig class System.Linq.IOrderedQueryable`1<!!TSource> OrderBy<TSource, TKey>(class System.Linq.IQueryable`1<!!TSource> source, class System.Linq.Expressions.Expression`1<class System.Func`2<!!TSource, !!TKey>> keySelector) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Linq.IOrderedQueryable<TSource></ReturnType>
- </ReturnValue>
- <TypeParameters>
- <TypeParameter Name="TSource" />
- <TypeParameter Name="TKey" />
- </TypeParameters>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IQueryable<TSource>" RefType="this" />
- <Parameter Name="keySelector" Type="System.Linq.Expressions.Expression<System.Func<TSource,TKey>>" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>This method has at least one parameter of type <see cref="T:System.Linq.Expressions.Expression`1" /> whose type argument is one of the <see cref="T:System.Func`2" /> types. For these parameters, you can pass in a lambda expression and it will be compiled to an <see cref="T:System.Linq.Expressions.Expression`1" />.</para>
- <para>The <see cref="M:System.Linq.Queryable.OrderBy``2(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.OrderBy``2(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}})" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.CreateQuery``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter. The result of calling <see cref="M:System.Linq.IQueryProvider.CreateQuery``1(System.Linq.Expressions.Expression)" /> is cast to type <see cref="T:System.Linq.IOrderedQueryable`1" /> and returned.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.OrderBy``2(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}})" /> depends on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that it sorts the elements of <paramref name="source" /> based on the key obtained by invoking <paramref name="keySelector" /> on each element of <paramref name="source" />.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>Sorts the elements of a sequence in ascending order according to a key.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>An <see cref="T:System.Linq.IOrderedQueryable`1" /> whose elements are sorted according to a key.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />A sequence of values to order.</param>
- <param name="keySelector">
- <attribution license="cc4" from="Microsoft" modified="false" />A function to extract a key from an element.</param>
- <typeparam name="TSource">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of <paramref name="source" />.</typeparam>
- <typeparam name="TKey">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the key returned by the function that is represented by <paramref name="keySelector" />.</typeparam>
- </Docs>
- </Member>
- <Member MemberName="OrderBy<TSource,TKey>">
- <MemberSignature Language="C#" Value="public static System.Linq.IOrderedQueryable<TSource> OrderBy<TSource,TKey> (this System.Linq.IQueryable<TSource> source, System.Linq.Expressions.Expression<Func<TSource,TKey>> keySelector, System.Collections.Generic.IComparer<TKey> comparer);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig class System.Linq.IOrderedQueryable`1<!!TSource> OrderBy<TSource, TKey>(class System.Linq.IQueryable`1<!!TSource> source, class System.Linq.Expressions.Expression`1<class System.Func`2<!!TSource, !!TKey>> keySelector, class System.Collections.Generic.IComparer`1<!!TKey> comparer) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Linq.IOrderedQueryable<TSource></ReturnType>
- </ReturnValue>
- <TypeParameters>
- <TypeParameter Name="TSource" />
- <TypeParameter Name="TKey" />
- </TypeParameters>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IQueryable<TSource>" RefType="this" />
- <Parameter Name="keySelector" Type="System.Linq.Expressions.Expression<System.Func<TSource,TKey>>" />
- <Parameter Name="comparer" Type="System.Collections.Generic.IComparer<TKey>" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>This method has at least one parameter of type <see cref="T:System.Linq.Expressions.Expression`1" /> whose type argument is one of the <see cref="T:System.Func`2" /> types. For these parameters, you can pass in a lambda expression and it will be compiled to an <see cref="T:System.Linq.Expressions.Expression`1" />.</para>
- <para>The <see cref="M:System.Linq.Queryable.OrderBy``2(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}},System.Collections.Generic.IComparer{``1})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.OrderBy``2(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}},System.Collections.Generic.IComparer{``1})" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.CreateQuery``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter. The result of calling <see cref="M:System.Linq.IQueryProvider.CreateQuery``1(System.Linq.Expressions.Expression)" /> is cast to type <see cref="T:System.Linq.IOrderedQueryable`1" /> and returned.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.OrderBy``2(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}},System.Collections.Generic.IComparer{``1})" /> depends on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that it sorts the elements of <paramref name="source" /> based on the key obtained by invoking <paramref name="keySelector" /> on each element of <paramref name="source" />. The <paramref name="comparer" /> parameter is used to compare keys.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>Sorts the elements of a sequence in ascending order by using a specified comparer.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>An <see cref="T:System.Linq.IOrderedQueryable`1" /> whose elements are sorted according to a key.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />A sequence of values to order.</param>
- <param name="keySelector">
- <attribution license="cc4" from="Microsoft" modified="false" />A function to extract a key from an element.</param>
- <param name="comparer">
- <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.Collections.Generic.IComparer`1" /> to compare keys.</param>
- <typeparam name="TSource">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of <paramref name="source" />.</typeparam>
- <typeparam name="TKey">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the key returned by the function that is represented by <paramref name="keySelector" />.</typeparam>
- </Docs>
- </Member>
- <Member MemberName="OrderByDescending<TSource,TKey>">
- <MemberSignature Language="C#" Value="public static System.Linq.IOrderedQueryable<TSource> OrderByDescending<TSource,TKey> (this System.Linq.IQueryable<TSource> source, System.Linq.Expressions.Expression<Func<TSource,TKey>> keySelector);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig class System.Linq.IOrderedQueryable`1<!!TSource> OrderByDescending<TSource, TKey>(class System.Linq.IQueryable`1<!!TSource> source, class System.Linq.Expressions.Expression`1<class System.Func`2<!!TSource, !!TKey>> keySelector) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Linq.IOrderedQueryable<TSource></ReturnType>
- </ReturnValue>
- <TypeParameters>
- <TypeParameter Name="TSource" />
- <TypeParameter Name="TKey" />
- </TypeParameters>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IQueryable<TSource>" RefType="this" />
- <Parameter Name="keySelector" Type="System.Linq.Expressions.Expression<System.Func<TSource,TKey>>" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>This method has at least one parameter of type <see cref="T:System.Linq.Expressions.Expression`1" /> whose type argument is one of the <see cref="T:System.Func`2" /> types. For these parameters, you can pass in a lambda expression and it will be compiled to an <see cref="T:System.Linq.Expressions.Expression`1" />.</para>
- <para>The <see cref="M:System.Linq.Queryable.OrderByDescending``2(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.OrderByDescending``2(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}})" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.CreateQuery``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter. The result of calling <see cref="M:System.Linq.IQueryProvider.CreateQuery``1(System.Linq.Expressions.Expression)" /> is cast to type <see cref="T:System.Linq.IOrderedQueryable`1" /> and returned.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.OrderByDescending``2(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}})" /> depends on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that it sorts the elements of <paramref name="source" /> in descending order, based on the key obtained by invoking <paramref name="keySelector" /> on each element of <paramref name="source" />.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>Sorts the elements of a sequence in descending order according to a key.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>An <see cref="T:System.Linq.IOrderedQueryable`1" /> whose elements are sorted in descending order according to a key.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />A sequence of values to order.</param>
- <param name="keySelector">
- <attribution license="cc4" from="Microsoft" modified="false" />A function to extract a key from an element.</param>
- <typeparam name="TSource">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of <paramref name="source" />.</typeparam>
- <typeparam name="TKey">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the key returned by the function that is represented by <paramref name="keySelector" />.</typeparam>
- </Docs>
- </Member>
- <Member MemberName="OrderByDescending<TSource,TKey>">
- <MemberSignature Language="C#" Value="public static System.Linq.IOrderedQueryable<TSource> OrderByDescending<TSource,TKey> (this System.Linq.IQueryable<TSource> source, System.Linq.Expressions.Expression<Func<TSource,TKey>> keySelector, System.Collections.Generic.IComparer<TKey> comparer);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig class System.Linq.IOrderedQueryable`1<!!TSource> OrderByDescending<TSource, TKey>(class System.Linq.IQueryable`1<!!TSource> source, class System.Linq.Expressions.Expression`1<class System.Func`2<!!TSource, !!TKey>> keySelector, class System.Collections.Generic.IComparer`1<!!TKey> comparer) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Linq.IOrderedQueryable<TSource></ReturnType>
- </ReturnValue>
- <TypeParameters>
- <TypeParameter Name="TSource" />
- <TypeParameter Name="TKey" />
- </TypeParameters>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IQueryable<TSource>" RefType="this" />
- <Parameter Name="keySelector" Type="System.Linq.Expressions.Expression<System.Func<TSource,TKey>>" />
- <Parameter Name="comparer" Type="System.Collections.Generic.IComparer<TKey>" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>This method has at least one parameter of type <see cref="T:System.Linq.Expressions.Expression`1" /> whose type argument is one of the <see cref="T:System.Func`2" /> types. For these parameters, you can pass in a lambda expression and it will be compiled to an <see cref="T:System.Linq.Expressions.Expression`1" />.</para>
- <para>The <see cref="M:System.Linq.Queryable.OrderByDescending``2(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}},System.Collections.Generic.IComparer{``1})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.OrderByDescending``2(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}},System.Collections.Generic.IComparer{``1})" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.CreateQuery``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter. The result of calling <see cref="M:System.Linq.IQueryProvider.CreateQuery``1(System.Linq.Expressions.Expression)" /> is cast to type <see cref="T:System.Linq.IOrderedQueryable`1" /> and returned.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.OrderByDescending``2(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}},System.Collections.Generic.IComparer{``1})" /> depends on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that it sorts the elements of <paramref name="source" /> in descending order, based on the key obtained by invoking <paramref name="keySelector" /> on each element of <paramref name="source" />. The <paramref name="comparer" /> parameter is used to compare keys.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>Sorts the elements of a sequence in descending order by using a specified comparer.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>An <see cref="T:System.Linq.IOrderedQueryable`1" /> whose elements are sorted in descending order according to a key.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />A sequence of values to order.</param>
- <param name="keySelector">
- <attribution license="cc4" from="Microsoft" modified="false" />A function to extract a key from an element.</param>
- <param name="comparer">
- <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.Collections.Generic.IComparer`1" /> to compare keys.</param>
- <typeparam name="TSource">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of <paramref name="source" />.</typeparam>
- <typeparam name="TKey">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the key returned by the function that is represented by <paramref name="keySelector" />.</typeparam>
- </Docs>
- </Member>
- <Member MemberName="Reverse<TSource>">
- <MemberSignature Language="C#" Value="public static System.Linq.IQueryable<TSource> Reverse<TSource> (this System.Linq.IQueryable<TSource> source);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig class System.Linq.IQueryable`1<!!TSource> Reverse<TSource>(class System.Linq.IQueryable`1<!!TSource> source) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Linq.IQueryable<TSource></ReturnType>
- </ReturnValue>
- <TypeParameters>
- <TypeParameter Name="TSource" />
- </TypeParameters>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IQueryable<TSource>" RefType="this" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The <see cref="M:System.Linq.Queryable.Reverse``1(System.Linq.IQueryable{``0})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.Reverse``1(System.Linq.IQueryable{``0})" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.CreateQuery``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.Reverse``1(System.Linq.IQueryable{``0})" /> depends on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that it reverses the order of the elements in <paramref name="source" />.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>Inverts the order of the elements in a sequence.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>An <see cref="T:System.Linq.IQueryable`1" /> whose elements correspond to those of the input sequence in reverse order.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />A sequence of values to reverse.</param>
- <typeparam name="TSource">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of <paramref name="source" />.</typeparam>
- </Docs>
- </Member>
- <Member MemberName="Select<TSource,TResult>">
- <MemberSignature Language="C#" Value="public static System.Linq.IQueryable<TResult> Select<TSource,TResult> (this System.Linq.IQueryable<TSource> source, System.Linq.Expressions.Expression<Func<TSource,int,TResult>> selector);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig class System.Linq.IQueryable`1<!!TResult> Select<TSource, TResult>(class System.Linq.IQueryable`1<!!TSource> source, class System.Linq.Expressions.Expression`1<class System.Func`3<!!TSource, int32, !!TResult>> selector) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Linq.IQueryable<TResult></ReturnType>
- </ReturnValue>
- <TypeParameters>
- <TypeParameter Name="TSource" />
- <TypeParameter Name="TResult" />
- </TypeParameters>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IQueryable<TSource>" RefType="this" />
- <Parameter Name="selector" Type="System.Linq.Expressions.Expression<System.Func<TSource,System.Int32,TResult>>" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>This method has at least one parameter of type <see cref="T:System.Linq.Expressions.Expression`1" /> whose type argument is one of the <see cref="T:System.Func`2" /> types. For these parameters, you can pass in a lambda expression and it will be compiled to an <see cref="T:System.Linq.Expressions.Expression`1" />.</para>
- <para>The <see cref="M:System.Linq.Queryable.Select``2(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Int32,``1}})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.Select``2(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Int32,``1}})" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.CreateQuery(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.Select``2(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Int32,``1}})" /> depend on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that it invokes <paramref name="selector" /> on each element of <paramref name="source" /> to project it into a different form.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>Projects each element of a sequence into a new form by incorporating the element's index.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>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" />.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />A sequence of values to project.</param>
- <param name="selector">
- <attribution license="cc4" from="Microsoft" modified="false" />A projection function to apply to each element.</param>
- <typeparam name="TSource">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of <paramref name="source" />.</typeparam>
- <typeparam name="TResult">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the value returned by the function represented by <paramref name="selector" />.</typeparam>
- </Docs>
- </Member>
- <Member MemberName="Select<TSource,TResult>">
- <MemberSignature Language="C#" Value="public static System.Linq.IQueryable<TResult> Select<TSource,TResult> (this System.Linq.IQueryable<TSource> source, System.Linq.Expressions.Expression<Func<TSource,TResult>> selector);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig class System.Linq.IQueryable`1<!!TResult> Select<TSource, TResult>(class System.Linq.IQueryable`1<!!TSource> source, class System.Linq.Expressions.Expression`1<class System.Func`2<!!TSource, !!TResult>> selector) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Linq.IQueryable<TResult></ReturnType>
- </ReturnValue>
- <TypeParameters>
- <TypeParameter Name="TSource" />
- <TypeParameter Name="TResult" />
- </TypeParameters>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IQueryable<TSource>" RefType="this" />
- <Parameter Name="selector" Type="System.Linq.Expressions.Expression<System.Func<TSource,TResult>>" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>This method has at least one parameter of type <see cref="T:System.Linq.Expressions.Expression`1" /> whose type argument is one of the <see cref="T:System.Func`2" /> types. For these parameters, you can pass in a lambda expression and it will be compiled to an <see cref="T:System.Linq.Expressions.Expression`1" />.</para>
- <para>The <see cref="M:System.Linq.Queryable.Select``2(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.Select``2(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}})" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.CreateQuery(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.Select``2(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}})" /> depends on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that it invokes <paramref name="selector" /> on each element of <paramref name="source" /> to project it into a different form.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>Projects each element of a sequence into a new form.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>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" />.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />A sequence of values to project.</param>
- <param name="selector">
- <attribution license="cc4" from="Microsoft" modified="false" />A projection function to apply to each element.</param>
- <typeparam name="TSource">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of <paramref name="source" />.</typeparam>
- <typeparam name="TResult">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the value returned by the function represented by <paramref name="selector" />.</typeparam>
- </Docs>
- </Member>
- <Member MemberName="SelectMany<TSource,TResult>">
- <MemberSignature Language="C#" Value="public static System.Linq.IQueryable<TResult> SelectMany<TSource,TResult> (this System.Linq.IQueryable<TSource> source, System.Linq.Expressions.Expression<Func<TSource,System.Collections.Generic.IEnumerable<TResult>>> selector);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig class System.Linq.IQueryable`1<!!TResult> SelectMany<TSource, TResult>(class System.Linq.IQueryable`1<!!TSource> source, class System.Linq.Expressions.Expression`1<class System.Func`2<!!TSource, class System.Collections.Generic.IEnumerable`1<!!TResult>>> selector) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Linq.IQueryable<TResult></ReturnType>
- </ReturnValue>
- <TypeParameters>
- <TypeParameter Name="TSource" />
- <TypeParameter Name="TResult" />
- </TypeParameters>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IQueryable<TSource>" RefType="this" />
- <Parameter Name="selector" Type="System.Linq.Expressions.Expression<System.Func<TSource,System.Collections.Generic.IEnumerable<TResult>>>" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>This method has at least one parameter of type <see cref="T:System.Linq.Expressions.Expression`1" /> whose type argument is one of the <see cref="T:System.Func`2" /> types. For these parameters, you can pass in a lambda expression and it will be compiled to an <see cref="T:System.Linq.Expressions.Expression`1" />.</para>
- <para>The <see cref="M:System.Linq.Queryable.SelectMany``2(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Collections.Generic.IEnumerable{``1}}})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.SelectMany``2(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Collections.Generic.IEnumerable{``1}}})" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.CreateQuery(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.SelectMany``2(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Collections.Generic.IEnumerable{``1}}})" /> depends on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that it invokes <paramref name="selector" /> on each element of <paramref name="source" /> to project it into an enumerable form. It then concatenates the enumerable results into a single, one-dimensional sequence.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>Projects each element of a sequence to an <see cref="T:System.Collections.Generic.IEnumerable`1" /> and combines the resulting sequences into one sequence.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>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.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />A sequence of values to project.</param>
- <param name="selector">
- <attribution license="cc4" from="Microsoft" modified="false" />A projection function to apply to each element.</param>
- <typeparam name="TSource">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of <paramref name="source" />.</typeparam>
- <typeparam name="TResult">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of the sequence returned by the function represented by <paramref name="selector" />.</typeparam>
- </Docs>
- </Member>
- <Member MemberName="SelectMany<TSource,TResult>">
- <MemberSignature Language="C#" Value="public static System.Linq.IQueryable<TResult> SelectMany<TSource,TResult> (this System.Linq.IQueryable<TSource> source, System.Linq.Expressions.Expression<Func<TSource,int,System.Collections.Generic.IEnumerable<TResult>>> selector);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig class System.Linq.IQueryable`1<!!TResult> SelectMany<TSource, TResult>(class System.Linq.IQueryable`1<!!TSource> source, class System.Linq.Expressions.Expression`1<class System.Func`3<!!TSource, int32, class System.Collections.Generic.IEnumerable`1<!!TResult>>> selector) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Linq.IQueryable<TResult></ReturnType>
- </ReturnValue>
- <TypeParameters>
- <TypeParameter Name="TSource" />
- <TypeParameter Name="TResult" />
- </TypeParameters>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IQueryable<TSource>" RefType="this" />
- <Parameter Name="selector" Type="System.Linq.Expressions.Expression<System.Func<TSource,System.Int32,System.Collections.Generic.IEnumerable<TResult>>>" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>This method has at least one parameter of type <see cref="T:System.Linq.Expressions.Expression`1" /> whose type argument is one of the <see cref="T:System.Func`2" /> types. For these parameters, you can pass in a lambda expression and it will be compiled to an <see cref="T:System.Linq.Expressions.Expression`1" />.</para>
- <para>The <see cref="M:System.Linq.Queryable.SelectMany``2(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Int32,System.Collections.Generic.IEnumerable{``1}}})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.SelectMany``2(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Int32,System.Collections.Generic.IEnumerable{``1}}})" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.CreateQuery(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.SelectMany``2(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Int32,System.Collections.Generic.IEnumerable{``1}}})" /> depends on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that it invokes <paramref name="selector" /> on each element of <paramref name="source" /> to project it into an enumerable form. Each enumerable result incorporates the index of the source element. It then concatenates the enumerable results into a single, one-dimensional sequence.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>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.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>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.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />A sequence of values to project.</param>
- <param name="selector">
- <attribution license="cc4" from="Microsoft" modified="false" />A projection function to apply to each element; the second parameter of this function represents the index of the source element.</param>
- <typeparam name="TSource">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of <paramref name="source" />.</typeparam>
- <typeparam name="TResult">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of the sequence returned by the function represented by <paramref name="selector" />.</typeparam>
- </Docs>
- </Member>
- <Member MemberName="SelectMany<TSource,TCollection,TResult>">
- <MemberSignature Language="C#" Value="public static System.Linq.IQueryable<TResult> SelectMany<TSource,TCollection,TResult> (this System.Linq.IQueryable<TSource> source, System.Linq.Expressions.Expression<Func<TSource,System.Collections.Generic.IEnumerable<TCollection>>> collectionSelector, System.Linq.Expressions.Expression<Func<TSource,TCollection,TResult>> resultSelector);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig class System.Linq.IQueryable`1<!!TResult> SelectMany<TSource, TCollection, TResult>(class System.Linq.IQueryable`1<!!TSource> source, class System.Linq.Expressions.Expression`1<class System.Func`2<!!TSource, class System.Collections.Generic.IEnumerable`1<!!TCollection>>> collectionSelector, class System.Linq.Expressions.Expression`1<class System.Func`3<!!TSource, !!TCollection, !!TResult>> resultSelector) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Linq.IQueryable<TResult></ReturnType>
- </ReturnValue>
- <TypeParameters>
- <TypeParameter Name="TSource" />
- <TypeParameter Name="TCollection" />
- <TypeParameter Name="TResult" />
- </TypeParameters>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IQueryable<TSource>" RefType="this" />
- <Parameter Name="collectionSelector" Type="System.Linq.Expressions.Expression<System.Func<TSource,System.Collections.Generic.IEnumerable<TCollection>>>" />
- <Parameter Name="resultSelector" Type="System.Linq.Expressions.Expression<System.Func<TSource,TCollection,TResult>>" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>This method has at least one parameter of type <see cref="T:System.Linq.Expressions.Expression`1" /> whose type argument is one of the <see cref="T:System.Func`2" /> types. For these parameters, you can pass in a lambda expression and it will be compiled to an <see cref="T:System.Linq.Expressions.Expression`1" />.</para>
- <para>The <see cref="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}})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="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}})" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.CreateQuery(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="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}})" /> depends on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that it invokes <paramref name="collectionSelector" /> on each element of <paramref name="source" /> to project it into an enumerable form. Then the function represented by <paramref name="resultSelector" /> is invoked on each element in each intermediate sequence. The resulting values are concatenated into a single, one-dimensional sequence.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>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.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>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.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />A sequence of values to project.</param>
- <param name="collectionSelector">
- <attribution license="cc4" from="Microsoft" modified="false" />A projection function to apply to each element of the input sequence.</param>
- <param name="resultSelector">
- <attribution license="cc4" from="Microsoft" modified="false" />A projection function to apply to each element of each intermediate sequence.</param>
- <typeparam name="TSource">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of <paramref name="source" />.</typeparam>
- <typeparam name="TCollection">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the intermediate elements collected by the function represented by <paramref name="collectionSelector" />.</typeparam>
- <typeparam name="TResult">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of the resulting sequence.</typeparam>
- </Docs>
- </Member>
- <Member MemberName="SelectMany<TSource,TCollection,TResult>">
- <MemberSignature Language="C#" Value="public static System.Linq.IQueryable<TResult> SelectMany<TSource,TCollection,TResult> (this System.Linq.IQueryable<TSource> source, System.Linq.Expressions.Expression<Func<TSource,int,System.Collections.Generic.IEnumerable<TCollection>>> collectionSelector, System.Linq.Expressions.Expression<Func<TSource,TCollection,TResult>> resultSelector);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig class System.Linq.IQueryable`1<!!TResult> SelectMany<TSource, TCollection, TResult>(class System.Linq.IQueryable`1<!!TSource> source, class System.Linq.Expressions.Expression`1<class System.Func`3<!!TSource, int32, class System.Collections.Generic.IEnumerable`1<!!TCollection>>> collectionSelector, class System.Linq.Expressions.Expression`1<class System.Func`3<!!TSource, !!TCollection, !!TResult>> resultSelector) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Linq.IQueryable<TResult></ReturnType>
- </ReturnValue>
- <TypeParameters>
- <TypeParameter Name="TSource" />
- <TypeParameter Name="TCollection" />
- <TypeParameter Name="TResult" />
- </TypeParameters>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IQueryable<TSource>" RefType="this" />
- <Parameter Name="collectionSelector" Type="System.Linq.Expressions.Expression<System.Func<TSource,System.Int32,System.Collections.Generic.IEnumerable<TCollection>>>" />
- <Parameter Name="resultSelector" Type="System.Linq.Expressions.Expression<System.Func<TSource,TCollection,TResult>>" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>This method has at least one parameter of type <see cref="T:System.Linq.Expressions.Expression`1" /> whose type argument is one of the <see cref="T:System.Func`2" /> types. For these parameters, you can pass in a lambda expression and it will be compiled to an <see cref="T:System.Linq.Expressions.Expression`1" />.</para>
- <para>The <see cref="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}})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="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}})" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.CreateQuery(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="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}})" /> depends on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that it invokes <paramref name="collectionSelector" /> on each element of <paramref name="source" /> to project it into an enumerable form. Each enumerable result incorporates the source element's index. Then the function represented by <paramref name="resultSelector" /> is invoked on each element in each intermediate sequence. The resulting values are concatenated into a single, one-dimensional sequence.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>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.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>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.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />A sequence of values to project.</param>
- <param name="collectionSelector">
- <attribution license="cc4" from="Microsoft" modified="false" />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>
- <param name="resultSelector">
- <attribution license="cc4" from="Microsoft" modified="false" />A projection function to apply to each element of each intermediate sequence.</param>
- <typeparam name="TSource">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of <paramref name="source" />.</typeparam>
- <typeparam name="TCollection">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the intermediate elements collected by the function represented by <paramref name="collectionSelector" />.</typeparam>
- <typeparam name="TResult">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of the resulting sequence.</typeparam>
- </Docs>
- </Member>
- <Member MemberName="SequenceEqual<TSource>">
- <MemberSignature Language="C#" Value="public static bool SequenceEqual<TSource> (this System.Linq.IQueryable<TSource> source1, System.Collections.Generic.IEnumerable<TSource> source2);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig bool SequenceEqual<TSource>(class System.Linq.IQueryable`1<!!TSource> source1, class System.Collections.Generic.IEnumerable`1<!!TSource> source2) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Boolean</ReturnType>
- </ReturnValue>
- <TypeParameters>
- <TypeParameter Name="TSource" />
- </TypeParameters>
- <Parameters>
- <Parameter Name="source1" Type="System.Linq.IQueryable<TSource>" RefType="this" />
- <Parameter Name="source2" Type="System.Collections.Generic.IEnumerable<TSource>" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The <see cref="M:System.Linq.Queryable.SequenceEqual``1(System.Linq.IQueryable{``0},System.Collections.Generic.IEnumerable{``0})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.SequenceEqual``1(System.Linq.IQueryable{``0},System.Collections.Generic.IEnumerable{``0})" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.Execute``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source1" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.SequenceEqual``1(System.Linq.IQueryable{``0},System.Collections.Generic.IEnumerable{``0})" /> depends on the implementation of the type of the <paramref name="source1" /> parameter. The expected behavior is that it determines if the two source sequences are equal.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>Determines whether two sequences are equal by using the default equality comparer to compare elements.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>true if the two source sequences are of equal length and their corresponding elements compare equal; otherwise, false.</para>
- </returns>
- <param name="source1">
- <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.Linq.IQueryable`1" /> whose elements to compare to those of <paramref name="source2" />.</param>
- <param name="source2">
- <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.Collections.Generic.IEnumerable`1" /> whose elements to compare to those of the first sequence.</param>
- <typeparam name="TSource">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of the input sequences.</typeparam>
- </Docs>
- </Member>
- <Member MemberName="SequenceEqual<TSource>">
- <MemberSignature Language="C#" Value="public static bool SequenceEqual<TSource> (this System.Linq.IQueryable<TSource> source1, System.Collections.Generic.IEnumerable<TSource> source2, System.Collections.Generic.IEqualityComparer<TSource> comparer);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig bool SequenceEqual<TSource>(class System.Linq.IQueryable`1<!!TSource> source1, class System.Collections.Generic.IEnumerable`1<!!TSource> source2, class System.Collections.Generic.IEqualityComparer`1<!!TSource> comparer) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Boolean</ReturnType>
- </ReturnValue>
- <TypeParameters>
- <TypeParameter Name="TSource" />
- </TypeParameters>
- <Parameters>
- <Parameter Name="source1" Type="System.Linq.IQueryable<TSource>" RefType="this" />
- <Parameter Name="source2" Type="System.Collections.Generic.IEnumerable<TSource>" />
- <Parameter Name="comparer" Type="System.Collections.Generic.IEqualityComparer<TSource>" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The <see cref="M:System.Linq.Queryable.SequenceEqual``1(System.Linq.IQueryable{``0},System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEqualityComparer{``0})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.SequenceEqual``1(System.Linq.IQueryable{``0},System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEqualityComparer{``0})" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.Execute``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source1" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.SequenceEqual``1(System.Linq.IQueryable{``0},System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEqualityComparer{``0})" /> depends on the implementation of the type of the <paramref name="source1" /> parameter. The expected behavior is that it determines if the two source sequences are equal by using <paramref name="comparer" /> to compare elements.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>Determines whether two sequences are equal by using a specified <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> to compare elements.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>true if the two source sequences are of equal length and their corresponding elements compare equal; otherwise, false.</para>
- </returns>
- <param name="source1">
- <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.Linq.IQueryable`1" /> whose elements to compare to those of <paramref name="source2" />.</param>
- <param name="source2">
- <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.Collections.Generic.IEnumerable`1" /> whose elements to compare to those of the first sequence.</param>
- <param name="comparer">
- <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> to use to compare elements.</param>
- <typeparam name="TSource">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of the input sequences.</typeparam>
- </Docs>
- </Member>
- <Member MemberName="Single<TSource>">
- <MemberSignature Language="C#" Value="public static TSource Single<TSource> (this System.Linq.IQueryable<TSource> source);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig !!TSource Single<TSource>(class System.Linq.IQueryable`1<!!TSource> source) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>TSource</ReturnType>
- </ReturnValue>
- <TypeParameters>
- <TypeParameter Name="TSource" />
- </TypeParameters>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IQueryable<TSource>" RefType="this" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The <see cref="M:System.Linq.Queryable.Single``1(System.Linq.IQueryable{``0})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.Single``1(System.Linq.IQueryable{``0})" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.Execute``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.Single``1(System.Linq.IQueryable{``0})" /> depends on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that it returns the only element in <paramref name="source" />.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>Returns the only element of a sequence, and throws an exception if there is not exactly one element in the sequence.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The single element of the input sequence.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.Linq.IQueryable`1" /> to return the single element of.</param>
- <typeparam name="TSource">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of <paramref name="source" />.</typeparam>
- </Docs>
- </Member>
- <Member MemberName="Single<TSource>">
- <MemberSignature Language="C#" Value="public static TSource Single<TSource> (this System.Linq.IQueryable<TSource> source, System.Linq.Expressions.Expression<Func<TSource,bool>> predicate);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig !!TSource Single<TSource>(class System.Linq.IQueryable`1<!!TSource> source, class System.Linq.Expressions.Expression`1<class System.Func`2<!!TSource, bool>> predicate) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>TSource</ReturnType>
- </ReturnValue>
- <TypeParameters>
- <TypeParameter Name="TSource" />
- </TypeParameters>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IQueryable<TSource>" RefType="this" />
- <Parameter Name="predicate" Type="System.Linq.Expressions.Expression<System.Func<TSource,System.Boolean>>" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>This method has at least one parameter of type <see cref="T:System.Linq.Expressions.Expression`1" /> whose type argument is one of the <see cref="T:System.Func`2" /> types. For these parameters, you can pass in a lambda expression and it will be compiled to an <see cref="T:System.Linq.Expressions.Expression`1" />.</para>
- <para>The <see cref="M:System.Linq.Queryable.Single``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.Single``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}})" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.Execute``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.Single``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}})" /> depends on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that it returns the only element in <paramref name="source" /> that satisfies the condition specified by <paramref name="predicate" />.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>Returns the only element of a sequence that satisfies a specified condition, and throws an exception if more than one such element exists.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The single element of the input sequence that satisfies the condition in <paramref name="predicate" />.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.Linq.IQueryable`1" /> to return a single element from.</param>
- <param name="predicate">
- <attribution license="cc4" from="Microsoft" modified="false" />A function to test an element for a condition.</param>
- <typeparam name="TSource">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of <paramref name="source" />.</typeparam>
- </Docs>
- </Member>
- <Member MemberName="SingleOrDefault<TSource>">
- <MemberSignature Language="C#" Value="public static TSource SingleOrDefault<TSource> (this System.Linq.IQueryable<TSource> source);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig !!TSource SingleOrDefault<TSource>(class System.Linq.IQueryable`1<!!TSource> source) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>TSource</ReturnType>
- </ReturnValue>
- <TypeParameters>
- <TypeParameter Name="TSource" />
- </TypeParameters>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IQueryable<TSource>" RefType="this" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The <see cref="M:System.Linq.Queryable.SingleOrDefault``1(System.Linq.IQueryable{``0})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.SingleOrDefault``1(System.Linq.IQueryable{``0})" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.Execute``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.SingleOrDefault``1(System.Linq.IQueryable{``0})" /> depends on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that it returns the only element in <paramref name="source" />, or a default value if <paramref name="source" /> is empty.</para>
- <para>The <see cref="Overload:System.Linq.Queryable.SingleOrDefault" /> method does not provide a way to specify a default value. If you want to specify a default value other than default(<paramref name="TSource" />), use the <see cref="M:System.Linq.Queryable.DefaultIfEmpty``1(System.Linq.IQueryable{``0},``0)" /> method as described in the Example section.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>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.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The single element of the input sequence, or <unmanagedCodeEntityReference>default</unmanagedCodeEntityReference>(<paramref name="TSource" />) if the sequence contains no elements.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.Linq.IQueryable`1" /> to return the single element of.</param>
- <typeparam name="TSource">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of <paramref name="source" />.</typeparam>
- </Docs>
- </Member>
- <Member MemberName="SingleOrDefault<TSource>">
- <MemberSignature Language="C#" Value="public static TSource SingleOrDefault<TSource> (this System.Linq.IQueryable<TSource> source, System.Linq.Expressions.Expression<Func<TSource,bool>> predicate);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig !!TSource SingleOrDefault<TSource>(class System.Linq.IQueryable`1<!!TSource> source, class System.Linq.Expressions.Expression`1<class System.Func`2<!!TSource, bool>> predicate) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>TSource</ReturnType>
- </ReturnValue>
- <TypeParameters>
- <TypeParameter Name="TSource" />
- </TypeParameters>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IQueryable<TSource>" RefType="this" />
- <Parameter Name="predicate" Type="System.Linq.Expressions.Expression<System.Func<TSource,System.Boolean>>" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>This method has at least one parameter of type <see cref="T:System.Linq.Expressions.Expression`1" /> whose type argument is one of the <see cref="T:System.Func`2" /> types. For these parameters, you can pass in a lambda expression and it will be compiled to an <see cref="T:System.Linq.Expressions.Expression`1" />.</para>
- <para>The <see cref="M:System.Linq.Queryable.SingleOrDefault``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.SingleOrDefault``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}})" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.Execute``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.SingleOrDefault``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}})" /> depends on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that it returns the only element in <paramref name="source" /> that satisfies the condition specified by <paramref name="predicate" />, or a default value if no such element exists.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>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.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The single element of the input sequence that satisfies the condition in <paramref name="predicate" />, or <unmanagedCodeEntityReference>default</unmanagedCodeEntityReference>(<paramref name="TSource" />) if no such element is found.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.Linq.IQueryable`1" /> to return a single element from.</param>
- <param name="predicate">
- <attribution license="cc4" from="Microsoft" modified="false" />A function to test an element for a condition.</param>
- <typeparam name="TSource">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of <paramref name="source" />.</typeparam>
- </Docs>
- </Member>
- <Member MemberName="Skip<TSource>">
- <MemberSignature Language="C#" Value="public static System.Linq.IQueryable<TSource> Skip<TSource> (this System.Linq.IQueryable<TSource> source, int count);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig class System.Linq.IQueryable`1<!!TSource> Skip<TSource>(class System.Linq.IQueryable`1<!!TSource> source, int32 count) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Linq.IQueryable<TSource></ReturnType>
- </ReturnValue>
- <TypeParameters>
- <TypeParameter Name="TSource" />
- </TypeParameters>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IQueryable<TSource>" RefType="this" />
- <Parameter Name="count" Type="System.Int32" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The <see cref="M:System.Linq.Queryable.Skip``1(System.Linq.IQueryable{``0},System.Int32)" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.Skip``1(System.Linq.IQueryable{``0},System.Int32)" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.CreateQuery(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.Skip``1(System.Linq.IQueryable{``0},System.Int32)" /> depends on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that it skips the first <paramref name="count" /> elements in <paramref name="source" /> and returns the remaining elements.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>Bypasses a specified number of elements in a sequence and then returns the remaining elements.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>An <see cref="T:System.Linq.IQueryable`1" /> that contains elements that occur after the specified index in the input sequence.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.Linq.IQueryable`1" /> to return elements from.</param>
- <param name="count">
- <attribution license="cc4" from="Microsoft" modified="false" />The number of elements to skip before returning the remaining elements.</param>
- <typeparam name="TSource">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of <paramref name="source" />.</typeparam>
- </Docs>
- </Member>
- <Member MemberName="SkipWhile<TSource>">
- <MemberSignature Language="C#" Value="public static System.Linq.IQueryable<TSource> SkipWhile<TSource> (this System.Linq.IQueryable<TSource> source, System.Linq.Expressions.Expression<Func<TSource,bool>> predicate);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig class System.Linq.IQueryable`1<!!TSource> SkipWhile<TSource>(class System.Linq.IQueryable`1<!!TSource> source, class System.Linq.Expressions.Expression`1<class System.Func`2<!!TSource, bool>> predicate) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Linq.IQueryable<TSource></ReturnType>
- </ReturnValue>
- <TypeParameters>
- <TypeParameter Name="TSource" />
- </TypeParameters>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IQueryable<TSource>" RefType="this" />
- <Parameter Name="predicate" Type="System.Linq.Expressions.Expression<System.Func<TSource,System.Boolean>>" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>This method has at least one parameter of type <see cref="T:System.Linq.Expressions.Expression`1" /> whose type argument is one of the <see cref="T:System.Func`2" /> types. For these parameters, you can pass in a lambda expression and it will be compiled to an <see cref="T:System.Linq.Expressions.Expression`1" />.</para>
- <para>The <see cref="M:System.Linq.Queryable.SkipWhile``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.SkipWhile``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}})" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.CreateQuery(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.SkipWhile``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}})" /> depends on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that it applies <paramref name="predicate" /> to each element in <paramref name="source" /> until it finds an element for which <paramref name="predicate" /> returns false. That element and all the remaining elements are returned.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>Bypasses elements in a sequence as long as a specified condition is true and then returns the remaining elements.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>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" />.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.Linq.IQueryable`1" /> to return elements from.</param>
- <param name="predicate">
- <attribution license="cc4" from="Microsoft" modified="false" />A function to test each element for a condition.</param>
- <typeparam name="TSource">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of <paramref name="source" />.</typeparam>
- </Docs>
- </Member>
- <Member MemberName="SkipWhile<TSource>">
- <MemberSignature Language="C#" Value="public static System.Linq.IQueryable<TSource> SkipWhile<TSource> (this System.Linq.IQueryable<TSource> source, System.Linq.Expressions.Expression<Func<TSource,int,bool>> predicate);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig class System.Linq.IQueryable`1<!!TSource> SkipWhile<TSource>(class System.Linq.IQueryable`1<!!TSource> source, class System.Linq.Expressions.Expression`1<class System.Func`3<!!TSource, int32, bool>> predicate) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Linq.IQueryable<TSource></ReturnType>
- </ReturnValue>
- <TypeParameters>
- <TypeParameter Name="TSource" />
- </TypeParameters>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IQueryable<TSource>" RefType="this" />
- <Parameter Name="predicate" Type="System.Linq.Expressions.Expression<System.Func<TSource,System.Int32,System.Boolean>>" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>This method has at least one parameter of type <see cref="T:System.Linq.Expressions.Expression`1" /> whose type argument is one of the <see cref="T:System.Func`2" /> types. For these parameters, you can pass in a lambda expression and it will be compiled to an <see cref="T:System.Linq.Expressions.Expression`1" />.</para>
- <para>The <see cref="M:System.Linq.Queryable.SkipWhile``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Int32,System.Boolean}})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.SkipWhile``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Int32,System.Boolean}})" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.CreateQuery(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.SkipWhile``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Int32,System.Boolean}})" /> depends on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that it applies <paramref name="predicate" /> to each element in <paramref name="source" /> until it finds an element for which <paramref name="predicate" /> returns false. That element and all the remaining elements are returned. The index of each source element is provided as the second argument to <paramref name="predicate" />.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>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.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>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" />.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.Linq.IQueryable`1" /> to return elements from.</param>
- <param name="predicate">
- <attribution license="cc4" from="Microsoft" modified="false" />A function to test each element for a condition; the second parameter of this function represents the index of the source element.</param>
- <typeparam name="TSource">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of <paramref name="source" />.</typeparam>
- </Docs>
- </Member>
- <Member MemberName="Sum">
- <MemberSignature Language="C#" Value="public static decimal Sum (this System.Linq.IQueryable<decimal> source);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig valuetype System.Decimal Sum(class System.Linq.IQueryable`1<valuetype System.Decimal> source) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Decimal</ReturnType>
- </ReturnValue>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IQueryable<System.Decimal>" RefType="this" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The <see cref="M:System.Linq.Queryable.Sum(System.Linq.IQueryable{System.Decimal})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.Sum(System.Linq.IQueryable{System.Decimal})" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.Execute``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.Sum(System.Linq.IQueryable{System.Decimal})" /> depends on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that it returns the sum of the values in <paramref name="source" />.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>Computes the sum of a sequence of <see cref="T:System.Decimal" /> values.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The sum of the values in the sequence.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />A sequence of <see cref="T:System.Decimal" /> values to calculate the sum of.</param>
- </Docs>
- </Member>
- <Member MemberName="Sum">
- <MemberSignature Language="C#" Value="public static double Sum (this System.Linq.IQueryable<double> source);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig float64 Sum(class System.Linq.IQueryable`1<float64> source) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Double</ReturnType>
- </ReturnValue>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IQueryable<System.Double>" RefType="this" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The <see cref="M:System.Linq.Queryable.Sum(System.Linq.IQueryable{System.Double})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.Sum(System.Linq.IQueryable{System.Double})" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.Execute``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.Sum(System.Linq.IQueryable{System.Double})" /> depends on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that it returns the sum of the values in <paramref name="source" />.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>Computes the sum of a sequence of <see cref="T:System.Double" /> values.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The sum of the values in the sequence.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />A sequence of <see cref="T:System.Double" /> values to calculate the sum of.</param>
- </Docs>
- </Member>
- <Member MemberName="Sum">
- <MemberSignature Language="C#" Value="public static int Sum (this System.Linq.IQueryable<int> source);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig int32 Sum(class System.Linq.IQueryable`1<int32> source) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Int32</ReturnType>
- </ReturnValue>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IQueryable<System.Int32>" RefType="this" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The <see cref="M:System.Linq.Queryable.Sum(System.Linq.IQueryable{System.Int32})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.Sum(System.Linq.IQueryable{System.Int32})" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.Execute``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.Sum(System.Linq.IQueryable{System.Int32})" /> depends on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that it returns the sum of the values in <paramref name="source" />.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>Computes the sum of a sequence of <see cref="T:System.Int32" /> values.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The sum of the values in the sequence.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />A sequence of <see cref="T:System.Int32" /> values to calculate the sum of.</param>
- </Docs>
- </Member>
- <Member MemberName="Sum">
- <MemberSignature Language="C#" Value="public static long Sum (this System.Linq.IQueryable<long> source);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig int64 Sum(class System.Linq.IQueryable`1<int64> source) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Int64</ReturnType>
- </ReturnValue>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IQueryable<System.Int64>" RefType="this" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The <see cref="M:System.Linq.Queryable.Sum(System.Linq.IQueryable{System.Int64})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.Sum(System.Linq.IQueryable{System.Int64})" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.Execute``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.Sum(System.Linq.IQueryable{System.Int64})" /> depends on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that it returns the sum of the values in <paramref name="source" />.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>Computes the sum of a sequence of <see cref="T:System.Int64" /> values.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The sum of the values in the sequence.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />A sequence of <see cref="T:System.Int64" /> values to calculate the sum of.</param>
- </Docs>
- </Member>
- <Member MemberName="Sum">
- <MemberSignature Language="C#" Value="public static Nullable<decimal> Sum (this System.Linq.IQueryable<Nullable<decimal>> source);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig valuetype System.Nullable`1<valuetype System.Decimal> Sum(class System.Linq.IQueryable`1<valuetype System.Nullable`1<valuetype System.Decimal>> source) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Nullable<System.Decimal></ReturnType>
- </ReturnValue>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IQueryable<System.Nullable<System.Decimal>>" RefType="this" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The <see cref="M:System.Linq.Queryable.Sum(System.Linq.IQueryable{System.Nullable{System.Decimal}})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.Sum(System.Linq.IQueryable{System.Nullable{System.Decimal}})" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.Execute``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.Sum(System.Linq.IQueryable{System.Nullable{System.Decimal}})" /> depends on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that it returns the sum of the values in <paramref name="source" />.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>Computes the sum of a sequence of nullable <see cref="T:System.Decimal" /> values.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The sum of the values in the sequence.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />A sequence of nullable <see cref="T:System.Decimal" /> values to calculate the sum of.</param>
- </Docs>
- </Member>
- <Member MemberName="Sum">
- <MemberSignature Language="C#" Value="public static Nullable<double> Sum (this System.Linq.IQueryable<Nullable<double>> source);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig valuetype System.Nullable`1<float64> Sum(class System.Linq.IQueryable`1<valuetype System.Nullable`1<float64>> source) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Nullable<System.Double></ReturnType>
- </ReturnValue>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IQueryable<System.Nullable<System.Double>>" RefType="this" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The <see cref="M:System.Linq.Queryable.Sum(System.Linq.IQueryable{System.Nullable{System.Double}})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.Sum(System.Linq.IQueryable{System.Nullable{System.Double}})" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.Execute``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.Sum(System.Linq.IQueryable{System.Nullable{System.Double}})" /> depends on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that it returns the sum of the values in <paramref name="source" />.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>Computes the sum of a sequence of nullable <see cref="T:System.Double" /> values.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The sum of the values in the sequence.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />A sequence of nullable <see cref="T:System.Double" /> values to calculate the sum of.</param>
- </Docs>
- </Member>
- <Member MemberName="Sum">
- <MemberSignature Language="C#" Value="public static Nullable<int> Sum (this System.Linq.IQueryable<Nullable<int>> source);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig valuetype System.Nullable`1<int32> Sum(class System.Linq.IQueryable`1<valuetype System.Nullable`1<int32>> source) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Nullable<System.Int32></ReturnType>
- </ReturnValue>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IQueryable<System.Nullable<System.Int32>>" RefType="this" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The <see cref="M:System.Linq.Queryable.Sum(System.Linq.IQueryable{System.Nullable{System.Int32}})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.Sum(System.Linq.IQueryable{System.Nullable{System.Int32}})" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.Execute``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.Sum(System.Linq.IQueryable{System.Nullable{System.Int32}})" /> depends on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that it returns the sum of the values in <paramref name="source" />.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>Computes the sum of a sequence of nullable <see cref="T:System.Int32" /> values.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The sum of the values in the sequence.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />A sequence of nullable <see cref="T:System.Int32" /> values to calculate the sum of.</param>
- </Docs>
- </Member>
- <Member MemberName="Sum">
- <MemberSignature Language="C#" Value="public static Nullable<long> Sum (this System.Linq.IQueryable<Nullable<long>> source);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig valuetype System.Nullable`1<int64> Sum(class System.Linq.IQueryable`1<valuetype System.Nullable`1<int64>> source) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Nullable<System.Int64></ReturnType>
- </ReturnValue>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IQueryable<System.Nullable<System.Int64>>" RefType="this" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The <see cref="M:System.Linq.Queryable.Sum(System.Linq.IQueryable{System.Nullable{System.Int64}})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.Sum(System.Linq.IQueryable{System.Nullable{System.Int64}})" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.Execute``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.Sum(System.Linq.IQueryable{System.Nullable{System.Int64}})" /> depends on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that it returns the sum of the values in <paramref name="source" />.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>Computes the sum of a sequence of nullable <see cref="T:System.Int64" /> values.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The sum of the values in the sequence.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />A sequence of nullable <see cref="T:System.Int64" /> values to calculate the sum of.</param>
- </Docs>
- </Member>
- <Member MemberName="Sum">
- <MemberSignature Language="C#" Value="public static Nullable<float> Sum (this System.Linq.IQueryable<Nullable<float>> source);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig valuetype System.Nullable`1<float32> Sum(class System.Linq.IQueryable`1<valuetype System.Nullable`1<float32>> source) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Nullable<System.Single></ReturnType>
- </ReturnValue>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IQueryable<System.Nullable<System.Single>>" RefType="this" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The <see cref="M:System.Linq.Queryable.Sum(System.Linq.IQueryable{System.Nullable{System.Single}})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.Sum(System.Linq.IQueryable{System.Nullable{System.Single}})" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.Execute``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.Sum(System.Linq.IQueryable{System.Nullable{System.Single}})" /> depends on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that it returns the sum of the values in <paramref name="source" />.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>Computes the sum of a sequence of nullable <see cref="T:System.Single" /> values.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The sum of the values in the sequence.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />A sequence of nullable <see cref="T:System.Single" /> values to calculate the sum of.</param>
- </Docs>
- </Member>
- <Member MemberName="Sum">
- <MemberSignature Language="C#" Value="public static float Sum (this System.Linq.IQueryable<float> source);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig float32 Sum(class System.Linq.IQueryable`1<float32> source) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Single</ReturnType>
- </ReturnValue>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IQueryable<System.Single>" RefType="this" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The <see cref="M:System.Linq.Queryable.Sum(System.Linq.IQueryable{System.Single})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.Sum(System.Linq.IQueryable{System.Single})" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.Execute``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.Sum(System.Linq.IQueryable{System.Single})" /> depends on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that it returns the sum of the values in <paramref name="source" />.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>Computes the sum of a sequence of <see cref="T:System.Single" /> values.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The sum of the values in the sequence.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />A sequence of <see cref="T:System.Single" /> values to calculate the sum of.</param>
- </Docs>
- </Member>
- <Member MemberName="Sum<TSource>">
- <MemberSignature Language="C#" Value="public static decimal Sum<TSource> (this System.Linq.IQueryable<TSource> source, System.Linq.Expressions.Expression<Func<TSource,decimal>> selector);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig valuetype System.Decimal Sum<TSource>(class System.Linq.IQueryable`1<!!TSource> source, class System.Linq.Expressions.Expression`1<class System.Func`2<!!TSource, valuetype System.Decimal>> selector) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Decimal</ReturnType>
- </ReturnValue>
- <TypeParameters>
- <TypeParameter Name="TSource" />
- </TypeParameters>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IQueryable<TSource>" RefType="this" />
- <Parameter Name="selector" Type="System.Linq.Expressions.Expression<System.Func<TSource,System.Decimal>>" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>This method has at least one parameter of type <see cref="T:System.Linq.Expressions.Expression`1" /> whose type argument is one of the <see cref="T:System.Func`2" /> types. For these parameters, you can pass in a lambda expression and it will be compiled to an <see cref="T:System.Linq.Expressions.Expression`1" />.</para>
- <para>The <see cref="M:System.Linq.Queryable.Sum``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Decimal}})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.Sum``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Decimal}})" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.Execute``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.Sum``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Decimal}})" /> depends on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that it invokes <paramref name="selector" /> on each element of <paramref name="source" /> and returns the sum of the resulting values.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>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.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The sum of the projected values.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />A sequence of values of type <paramref name="TSource" />.</param>
- <param name="selector">
- <attribution license="cc4" from="Microsoft" modified="false" />A projection function to apply to each element.</param>
- <typeparam name="TSource">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of <paramref name="source" />.</typeparam>
- </Docs>
- </Member>
- <Member MemberName="Sum<TSource>">
- <MemberSignature Language="C#" Value="public static double Sum<TSource> (this System.Linq.IQueryable<TSource> source, System.Linq.Expressions.Expression<Func<TSource,double>> selector);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig float64 Sum<TSource>(class System.Linq.IQueryable`1<!!TSource> source, class System.Linq.Expressions.Expression`1<class System.Func`2<!!TSource, float64>> selector) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Double</ReturnType>
- </ReturnValue>
- <TypeParameters>
- <TypeParameter Name="TSource" />
- </TypeParameters>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IQueryable<TSource>" RefType="this" />
- <Parameter Name="selector" Type="System.Linq.Expressions.Expression<System.Func<TSource,System.Double>>" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>This method has at least one parameter of type <see cref="T:System.Linq.Expressions.Expression`1" /> whose type argument is one of the <see cref="T:System.Func`2" /> types. For these parameters, you can pass in a lambda expression and it will be compiled to an <see cref="T:System.Linq.Expressions.Expression`1" />.</para>
- <para>The <see cref="M:System.Linq.Queryable.Sum``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Double}})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.Sum``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Double}})" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.Execute``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.Sum``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Double}})" /> depends on the implementation of the type of he <paramref name="source" /> parameter. The expected behavior is that it invokes <paramref name="selector" /> on each element of <paramref name="source" /> and returns the sum of the resulting values.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>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.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The sum of the projected values.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />A sequence of values of type <paramref name="TSource" />.</param>
- <param name="selector">
- <attribution license="cc4" from="Microsoft" modified="false" />A projection function to apply to each element.</param>
- <typeparam name="TSource">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of <paramref name="source" />.</typeparam>
- </Docs>
- </Member>
- <Member MemberName="Sum<TSource>">
- <MemberSignature Language="C#" Value="public static int Sum<TSource> (this System.Linq.IQueryable<TSource> source, System.Linq.Expressions.Expression<Func<TSource,int>> selector);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig int32 Sum<TSource>(class System.Linq.IQueryable`1<!!TSource> source, class System.Linq.Expressions.Expression`1<class System.Func`2<!!TSource, int32>> selector) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Int32</ReturnType>
- </ReturnValue>
- <TypeParameters>
- <TypeParameter Name="TSource" />
- </TypeParameters>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IQueryable<TSource>" RefType="this" />
- <Parameter Name="selector" Type="System.Linq.Expressions.Expression<System.Func<TSource,System.Int32>>" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>This method has at least one parameter of type <see cref="T:System.Linq.Expressions.Expression`1" /> whose type argument is one of the <see cref="T:System.Func`2" /> types. For these parameters, you can pass in a lambda expression and it will be compiled to an <see cref="T:System.Linq.Expressions.Expression`1" />.</para>
- <para>The <see cref="M:System.Linq.Queryable.Sum``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Int32}})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.Sum``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Int32}})" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.Execute``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.Sum``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Int32}})" /> depends on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that it invokes <paramref name="selector" /> on each element of <paramref name="source" /> and returns the sum of the resulting values.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>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.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The sum of the projected values.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />A sequence of values of type <paramref name="TSource" />.</param>
- <param name="selector">
- <attribution license="cc4" from="Microsoft" modified="false" />A projection function to apply to each element.</param>
- <typeparam name="TSource">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of <paramref name="source" />.</typeparam>
- </Docs>
- </Member>
- <Member MemberName="Sum<TSource>">
- <MemberSignature Language="C#" Value="public static long Sum<TSource> (this System.Linq.IQueryable<TSource> source, System.Linq.Expressions.Expression<Func<TSource,long>> selector);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig int64 Sum<TSource>(class System.Linq.IQueryable`1<!!TSource> source, class System.Linq.Expressions.Expression`1<class System.Func`2<!!TSource, int64>> selector) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Int64</ReturnType>
- </ReturnValue>
- <TypeParameters>
- <TypeParameter Name="TSource" />
- </TypeParameters>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IQueryable<TSource>" RefType="this" />
- <Parameter Name="selector" Type="System.Linq.Expressions.Expression<System.Func<TSource,System.Int64>>" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>This method has at least one parameter of type <see cref="T:System.Linq.Expressions.Expression`1" /> whose type argument is one of the <see cref="T:System.Func`2" /> types. For these parameters, you can pass in a lambda expression and it will be compiled to an <see cref="T:System.Linq.Expressions.Expression`1" />.</para>
- <para>The <see cref="M:System.Linq.Queryable.Sum``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Int64}})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.Sum``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Int64}})" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.Execute``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.Sum``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Int64}})" /> depends on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that it invokes <paramref name="selector" /> on each element of <paramref name="source" /> and returns the sum of the resulting values.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>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.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The sum of the projected values.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />A sequence of values of type <paramref name="TSource" />.</param>
- <param name="selector">
- <attribution license="cc4" from="Microsoft" modified="false" />A projection function to apply to each element.</param>
- <typeparam name="TSource">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of <paramref name="source" />.</typeparam>
- </Docs>
- </Member>
- <Member MemberName="Sum<TSource>">
- <MemberSignature Language="C#" Value="public static Nullable<decimal> Sum<TSource> (this System.Linq.IQueryable<TSource> source, System.Linq.Expressions.Expression<Func<TSource,Nullable<decimal>>> selector);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig valuetype System.Nullable`1<valuetype System.Decimal> Sum<TSource>(class System.Linq.IQueryable`1<!!TSource> source, class System.Linq.Expressions.Expression`1<class System.Func`2<!!TSource, valuetype System.Nullable`1<valuetype System.Decimal>>> selector) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Nullable<System.Decimal></ReturnType>
- </ReturnValue>
- <TypeParameters>
- <TypeParameter Name="TSource" />
- </TypeParameters>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IQueryable<TSource>" RefType="this" />
- <Parameter Name="selector" Type="System.Linq.Expressions.Expression<System.Func<TSource,System.Nullable<System.Decimal>>>" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>This method has at least one parameter of type <see cref="T:System.Linq.Expressions.Expression`1" /> whose type argument is one of the <see cref="T:System.Func`2" /> types. For these parameters, you can pass in a lambda expression and it will be compiled to an <see cref="T:System.Linq.Expressions.Expression`1" />.</para>
- <para>The <see cref="M:System.Linq.Queryable.Sum``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Nullable{System.Decimal}}})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.Sum``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Nullable{System.Decimal}}})" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.Execute``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.Sum``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Nullable{System.Decimal}}})" /> depends on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that it invokes <paramref name="selector" /> on each element of <paramref name="source" /> and returns the sum of the resulting values.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>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.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The sum of the projected values.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />A sequence of values of type <paramref name="TSource" />.</param>
- <param name="selector">
- <attribution license="cc4" from="Microsoft" modified="false" />A projection function to apply to each element.</param>
- <typeparam name="TSource">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of <paramref name="source" />.</typeparam>
- </Docs>
- </Member>
- <Member MemberName="Sum<TSource>">
- <MemberSignature Language="C#" Value="public static Nullable<double> Sum<TSource> (this System.Linq.IQueryable<TSource> source, System.Linq.Expressions.Expression<Func<TSource,Nullable<double>>> selector);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig valuetype System.Nullable`1<float64> Sum<TSource>(class System.Linq.IQueryable`1<!!TSource> source, class System.Linq.Expressions.Expression`1<class System.Func`2<!!TSource, valuetype System.Nullable`1<float64>>> selector) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Nullable<System.Double></ReturnType>
- </ReturnValue>
- <TypeParameters>
- <TypeParameter Name="TSource" />
- </TypeParameters>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IQueryable<TSource>" RefType="this" />
- <Parameter Name="selector" Type="System.Linq.Expressions.Expression<System.Func<TSource,System.Nullable<System.Double>>>" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>This method has at least one parameter of type <see cref="T:System.Linq.Expressions.Expression`1" /> whose type argument is one of the <see cref="T:System.Func`2" /> types. For these parameters, you can pass in a lambda expression and it will be compiled to an <see cref="T:System.Linq.Expressions.Expression`1" />.</para>
- <para>The <see cref="M:System.Linq.Queryable.Sum``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Nullable{System.Double}}})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.Sum``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Nullable{System.Double}}})" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.Execute``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.Sum``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Nullable{System.Double}}})" /> depends on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that it invokes <paramref name="selector" /> on each element of <paramref name="source" /> and returns the sum of the resulting values.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>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.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The sum of the projected values.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />A sequence of values of type <paramref name="TSource" />.</param>
- <param name="selector">
- <attribution license="cc4" from="Microsoft" modified="false" />A projection function to apply to each element.</param>
- <typeparam name="TSource">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of <paramref name="source" />.</typeparam>
- </Docs>
- </Member>
- <Member MemberName="Sum<TSource>">
- <MemberSignature Language="C#" Value="public static Nullable<int> Sum<TSource> (this System.Linq.IQueryable<TSource> source, System.Linq.Expressions.Expression<Func<TSource,Nullable<int>>> selector);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig valuetype System.Nullable`1<int32> Sum<TSource>(class System.Linq.IQueryable`1<!!TSource> source, class System.Linq.Expressions.Expression`1<class System.Func`2<!!TSource, valuetype System.Nullable`1<int32>>> selector) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Nullable<System.Int32></ReturnType>
- </ReturnValue>
- <TypeParameters>
- <TypeParameter Name="TSource" />
- </TypeParameters>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IQueryable<TSource>" RefType="this" />
- <Parameter Name="selector" Type="System.Linq.Expressions.Expression<System.Func<TSource,System.Nullable<System.Int32>>>" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>This method has at least one parameter of type <see cref="T:System.Linq.Expressions.Expression`1" /> whose type argument is one of the <see cref="T:System.Func`2" /> types. For these parameters, you can pass in a lambda expression and it will be compiled to an <see cref="T:System.Linq.Expressions.Expression`1" />.</para>
- <para>The <see cref="M:System.Linq.Queryable.Sum``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Nullable{System.Int32}}})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.Sum``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Nullable{System.Int32}}})" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.Execute``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.Sum``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Nullable{System.Int32}}})" /> depends on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that it invokes <paramref name="selector" /> on each element of <paramref name="source" /> and returns the sum of the resulting values.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>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.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The sum of the projected values.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />A sequence of values of type <paramref name="TSource" />.</param>
- <param name="selector">
- <attribution license="cc4" from="Microsoft" modified="false" />A projection function to apply to each element.</param>
- <typeparam name="TSource">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of <paramref name="source" />.</typeparam>
- </Docs>
- </Member>
- <Member MemberName="Sum<TSource>">
- <MemberSignature Language="C#" Value="public static Nullable<long> Sum<TSource> (this System.Linq.IQueryable<TSource> source, System.Linq.Expressions.Expression<Func<TSource,Nullable<long>>> selector);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig valuetype System.Nullable`1<int64> Sum<TSource>(class System.Linq.IQueryable`1<!!TSource> source, class System.Linq.Expressions.Expression`1<class System.Func`2<!!TSource, valuetype System.Nullable`1<int64>>> selector) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Nullable<System.Int64></ReturnType>
- </ReturnValue>
- <TypeParameters>
- <TypeParameter Name="TSource" />
- </TypeParameters>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IQueryable<TSource>" RefType="this" />
- <Parameter Name="selector" Type="System.Linq.Expressions.Expression<System.Func<TSource,System.Nullable<System.Int64>>>" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>This method has at least one parameter of type <see cref="T:System.Linq.Expressions.Expression`1" /> whose type argument is one of the <see cref="T:System.Func`2" /> types. For these parameters, you can pass in a lambda expression and it will be compiled to an <see cref="T:System.Linq.Expressions.Expression`1" />.</para>
- <para>The <see cref="M:System.Linq.Queryable.Sum``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Nullable{System.Int64}}})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.Sum``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Nullable{System.Int64}}})" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.Execute``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.Sum``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Nullable{System.Int64}}})" /> depends on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that it invokes <paramref name="selector" /> on each element of <paramref name="source" /> and returns the sum of the resulting values.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>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.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The sum of the projected values.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />A sequence of values of type <paramref name="TSource" />.</param>
- <param name="selector">
- <attribution license="cc4" from="Microsoft" modified="false" />A projection function to apply to each element.</param>
- <typeparam name="TSource">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of <paramref name="source" />.</typeparam>
- </Docs>
- </Member>
- <Member MemberName="Sum<TSource>">
- <MemberSignature Language="C#" Value="public static Nullable<float> Sum<TSource> (this System.Linq.IQueryable<TSource> source, System.Linq.Expressions.Expression<Func<TSource,Nullable<float>>> selector);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig valuetype System.Nullable`1<float32> Sum<TSource>(class System.Linq.IQueryable`1<!!TSource> source, class System.Linq.Expressions.Expression`1<class System.Func`2<!!TSource, valuetype System.Nullable`1<float32>>> selector) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Nullable<System.Single></ReturnType>
- </ReturnValue>
- <TypeParameters>
- <TypeParameter Name="TSource" />
- </TypeParameters>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IQueryable<TSource>" RefType="this" />
- <Parameter Name="selector" Type="System.Linq.Expressions.Expression<System.Func<TSource,System.Nullable<System.Single>>>" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>This method has at least one parameter of type <see cref="T:System.Linq.Expressions.Expression`1" /> whose type argument is one of the <see cref="T:System.Func`2" /> types. For these parameters, you can pass in a lambda expression and it will be compiled to an <see cref="T:System.Linq.Expressions.Expression`1" />.</para>
- <para>The <see cref="M:System.Linq.Queryable.Sum``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Nullable{System.Single}}})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.Sum``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Nullable{System.Single}}})" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.Execute``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.Sum``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Nullable{System.Single}}})" /> depends on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that it invokes <paramref name="selector" /> on each element of <paramref name="source" /> and returns the sum of the resulting values.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>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.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The sum of the projected values.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />A sequence of values of type <paramref name="TSource" />.</param>
- <param name="selector">
- <attribution license="cc4" from="Microsoft" modified="false" />A projection function to apply to each element.</param>
- <typeparam name="TSource">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of <paramref name="source" />.</typeparam>
- </Docs>
- </Member>
- <Member MemberName="Sum<TSource>">
- <MemberSignature Language="C#" Value="public static float Sum<TSource> (this System.Linq.IQueryable<TSource> source, System.Linq.Expressions.Expression<Func<TSource,float>> selector);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig float32 Sum<TSource>(class System.Linq.IQueryable`1<!!TSource> source, class System.Linq.Expressions.Expression`1<class System.Func`2<!!TSource, float32>> selector) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Single</ReturnType>
- </ReturnValue>
- <TypeParameters>
- <TypeParameter Name="TSource" />
- </TypeParameters>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IQueryable<TSource>" RefType="this" />
- <Parameter Name="selector" Type="System.Linq.Expressions.Expression<System.Func<TSource,System.Single>>" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>This method has at least one parameter of type <see cref="T:System.Linq.Expressions.Expression`1" /> whose type argument is one of the <see cref="T:System.Func`2" /> types. For these parameters, you can pass in a lambda expression and it will be compiled to an <see cref="T:System.Linq.Expressions.Expression`1" />.</para>
- <para>The <see cref="M:System.Linq.Queryable.Sum``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Single}})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.Sum``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Single}})" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.Execute``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.Sum``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Single}})" /> depends on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that it invokes <paramref name="selector" /> on each element of <paramref name="source" /> and returns the sum of the resulting values.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>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.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The sum of the projected values.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />A sequence of values of type <paramref name="TSource" />.</param>
- <param name="selector">
- <attribution license="cc4" from="Microsoft" modified="false" />A projection function to apply to each element.</param>
- <typeparam name="TSource">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of <paramref name="source" />.</typeparam>
- </Docs>
- </Member>
- <Member MemberName="Take<TSource>">
- <MemberSignature Language="C#" Value="public static System.Linq.IQueryable<TSource> Take<TSource> (this System.Linq.IQueryable<TSource> source, int count);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig class System.Linq.IQueryable`1<!!TSource> Take<TSource>(class System.Linq.IQueryable`1<!!TSource> source, int32 count) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Linq.IQueryable<TSource></ReturnType>
- </ReturnValue>
- <TypeParameters>
- <TypeParameter Name="TSource" />
- </TypeParameters>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IQueryable<TSource>" RefType="this" />
- <Parameter Name="count" Type="System.Int32" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The <see cref="M:System.Linq.Queryable.Take``1(System.Linq.IQueryable{``0},System.Int32)" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.Take``1(System.Linq.IQueryable{``0},System.Int32)" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.CreateQuery(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.Take``1(System.Linq.IQueryable{``0},System.Int32)" /> depends on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that it takes the first <paramref name="count" /> elements from the start of <paramref name="source" />.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>Returns a specified number of contiguous elements from the start of a sequence.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>An <see cref="T:System.Linq.IQueryable`1" /> that contains the specified number of elements from the start of <paramref name="source" />.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />The sequence to return elements from.</param>
- <param name="count">
- <attribution license="cc4" from="Microsoft" modified="false" />The number of elements to return.</param>
- <typeparam name="TSource">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of <paramref name="source" />.</typeparam>
- </Docs>
- </Member>
- <Member MemberName="TakeWhile<TSource>">
- <MemberSignature Language="C#" Value="public static System.Linq.IQueryable<TSource> TakeWhile<TSource> (this System.Linq.IQueryable<TSource> source, System.Linq.Expressions.Expression<Func<TSource,bool>> predicate);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig class System.Linq.IQueryable`1<!!TSource> TakeWhile<TSource>(class System.Linq.IQueryable`1<!!TSource> source, class System.Linq.Expressions.Expression`1<class System.Func`2<!!TSource, bool>> predicate) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Linq.IQueryable<TSource></ReturnType>
- </ReturnValue>
- <TypeParameters>
- <TypeParameter Name="TSource" />
- </TypeParameters>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IQueryable<TSource>" RefType="this" />
- <Parameter Name="predicate" Type="System.Linq.Expressions.Expression<System.Func<TSource,System.Boolean>>" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>This method has at least one parameter of type <see cref="T:System.Linq.Expressions.Expression`1" /> whose type argument is one of the <see cref="T:System.Func`2" /> types. For these parameters, you can pass in a lambda expression and it will be compiled to an <see cref="T:System.Linq.Expressions.Expression`1" />.</para>
- <para>The <see cref="M:System.Linq.Queryable.TakeWhile``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.TakeWhile``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}})" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.CreateQuery(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.TakeWhile``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}})" /> depends on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that it applies <paramref name="predicate" /> to each element in <paramref name="source" /> until it finds an element for which <paramref name="predicate" /> returns false. It returns all the elements up until that point.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>Returns elements from a sequence as long as a specified condition is true.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>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.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />The sequence to return elements from.</param>
- <param name="predicate">
- <attribution license="cc4" from="Microsoft" modified="false" />A function to test each element for a condition.</param>
- <typeparam name="TSource">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of <paramref name="source" />.</typeparam>
- </Docs>
- </Member>
- <Member MemberName="TakeWhile<TSource>">
- <MemberSignature Language="C#" Value="public static System.Linq.IQueryable<TSource> TakeWhile<TSource> (this System.Linq.IQueryable<TSource> source, System.Linq.Expressions.Expression<Func<TSource,int,bool>> predicate);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig class System.Linq.IQueryable`1<!!TSource> TakeWhile<TSource>(class System.Linq.IQueryable`1<!!TSource> source, class System.Linq.Expressions.Expression`1<class System.Func`3<!!TSource, int32, bool>> predicate) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Linq.IQueryable<TSource></ReturnType>
- </ReturnValue>
- <TypeParameters>
- <TypeParameter Name="TSource" />
- </TypeParameters>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IQueryable<TSource>" RefType="this" />
- <Parameter Name="predicate" Type="System.Linq.Expressions.Expression<System.Func<TSource,System.Int32,System.Boolean>>" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>This method has at least one parameter of type <see cref="T:System.Linq.Expressions.Expression`1" /> whose type argument is one of the <see cref="T:System.Func`2" /> types. For these parameters, you can pass in a lambda expression and it will be compiled to an <see cref="T:System.Linq.Expressions.Expression`1" />.</para>
- <para>The <see cref="M:System.Linq.Queryable.TakeWhile``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Int32,System.Boolean}})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.TakeWhile``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Int32,System.Boolean}})" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.CreateQuery(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.TakeWhile``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Int32,System.Boolean}})" /> depends on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that it applies <paramref name="predicate" /> to each element in <paramref name="source" /> until it finds an element for which <paramref name="predicate" /> returns false. It returns all the elements up until that point. The index of each source element is provided as the second argument to <paramref name="predicate" />.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>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.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>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.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />The sequence to return elements from.</param>
- <param name="predicate">
- <attribution license="cc4" from="Microsoft" modified="false" />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>
- <typeparam name="TSource">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of <paramref name="source" />.</typeparam>
- </Docs>
- </Member>
- <Member MemberName="ThenBy<TSource,TKey>">
- <MemberSignature Language="C#" Value="public static System.Linq.IOrderedQueryable<TSource> ThenBy<TSource,TKey> (this System.Linq.IOrderedQueryable<TSource> source, System.Linq.Expressions.Expression<Func<TSource,TKey>> keySelector);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig class System.Linq.IOrderedQueryable`1<!!TSource> ThenBy<TSource, TKey>(class System.Linq.IOrderedQueryable`1<!!TSource> source, class System.Linq.Expressions.Expression`1<class System.Func`2<!!TSource, !!TKey>> keySelector) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Linq.IOrderedQueryable<TSource></ReturnType>
- </ReturnValue>
- <TypeParameters>
- <TypeParameter Name="TSource" />
- <TypeParameter Name="TKey" />
- </TypeParameters>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IOrderedQueryable<TSource>" RefType="this" />
- <Parameter Name="keySelector" Type="System.Linq.Expressions.Expression<System.Func<TSource,TKey>>" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>This method has at least one parameter of type <see cref="T:System.Linq.Expressions.Expression`1" /> whose type argument is one of the <see cref="T:System.Func`2" /> types. For these parameters, you can pass in a lambda expression and it will be compiled to an <see cref="T:System.Linq.Expressions.Expression`1" />.</para>
- <para>The <see cref="M:System.Linq.Queryable.ThenBy``2(System.Linq.IOrderedQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.ThenBy``2(System.Linq.IOrderedQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}})" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.CreateQuery``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter. The result of calling <see cref="M:System.Linq.IQueryProvider.CreateQuery``1(System.Linq.Expressions.Expression)" /> is cast to type <see cref="T:System.Linq.IOrderedQueryable`1" /> and returned.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.ThenBy``2(System.Linq.IOrderedQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}})" /> depends on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that it performs a secondary sort of the elements of <paramref name="source" /> based on the key obtained by invoking <paramref name="keySelector" /> on each element of <paramref name="source" />. All previously established sort orders are preserved.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>Performs a subsequent ordering of the elements in a sequence in ascending order according to a key.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>An <see cref="T:System.Linq.IOrderedQueryable`1" /> whose elements are sorted according to a key.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.Linq.IOrderedQueryable`1" /> that contains elements to sort.</param>
- <param name="keySelector">
- <attribution license="cc4" from="Microsoft" modified="false" />A function to extract a key from each element.</param>
- <typeparam name="TSource">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of <paramref name="source" />.</typeparam>
- <typeparam name="TKey">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the key returned by the function represented by <paramref name="keySelector" />.</typeparam>
- </Docs>
- </Member>
- <Member MemberName="ThenBy<TSource,TKey>">
- <MemberSignature Language="C#" Value="public static System.Linq.IOrderedQueryable<TSource> ThenBy<TSource,TKey> (this System.Linq.IOrderedQueryable<TSource> source, System.Linq.Expressions.Expression<Func<TSource,TKey>> keySelector, System.Collections.Generic.IComparer<TKey> comparer);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig class System.Linq.IOrderedQueryable`1<!!TSource> ThenBy<TSource, TKey>(class System.Linq.IOrderedQueryable`1<!!TSource> source, class System.Linq.Expressions.Expression`1<class System.Func`2<!!TSource, !!TKey>> keySelector, class System.Collections.Generic.IComparer`1<!!TKey> comparer) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Linq.IOrderedQueryable<TSource></ReturnType>
- </ReturnValue>
- <TypeParameters>
- <TypeParameter Name="TSource" />
- <TypeParameter Name="TKey" />
- </TypeParameters>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IOrderedQueryable<TSource>" RefType="this" />
- <Parameter Name="keySelector" Type="System.Linq.Expressions.Expression<System.Func<TSource,TKey>>" />
- <Parameter Name="comparer" Type="System.Collections.Generic.IComparer<TKey>" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>This method has at least one parameter of type <see cref="T:System.Linq.Expressions.Expression`1" /> whose type argument is one of the <see cref="T:System.Func`2" /> types. For these parameters, you can pass in a lambda expression and it will be compiled to an <see cref="T:System.Linq.Expressions.Expression`1" />.</para>
- <para>The <see cref="M:System.Linq.Queryable.ThenBy``2(System.Linq.IOrderedQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}},System.Collections.Generic.IComparer{``1})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.ThenBy``2(System.Linq.IOrderedQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}},System.Collections.Generic.IComparer{``1})" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.CreateQuery``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter. The result of calling <see cref="M:System.Linq.IQueryProvider.CreateQuery``1(System.Linq.Expressions.Expression)" /> is cast to type <see cref="T:System.Linq.IOrderedQueryable`1" /> and returned.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.ThenBy``2(System.Linq.IOrderedQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}},System.Collections.Generic.IComparer{``1})" /> depends on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that it performs a secondary sort of the elements of <paramref name="source" /> based on the key obtained by invoking <paramref name="keySelector" /> on each element of <paramref name="source" />. All previously established sort orders are preserved. The <paramref name="comparer" /> parameter is used to compare key values.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>Performs a subsequent ordering of the elements in a sequence in ascending order by using a specified comparer.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>An <see cref="T:System.Linq.IOrderedQueryable`1" /> whose elements are sorted according to a key.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.Linq.IOrderedQueryable`1" /> that contains elements to sort.</param>
- <param name="keySelector">
- <attribution license="cc4" from="Microsoft" modified="false" />A function to extract a key from each element.</param>
- <param name="comparer">
- <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.Collections.Generic.IComparer`1" /> to compare keys.</param>
- <typeparam name="TSource">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of <paramref name="source" />.</typeparam>
- <typeparam name="TKey">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the key returned by the function represented by <paramref name="keySelector" />.</typeparam>
- </Docs>
- </Member>
- <Member MemberName="ThenByDescending<TSource,TKey>">
- <MemberSignature Language="C#" Value="public static System.Linq.IOrderedQueryable<TSource> ThenByDescending<TSource,TKey> (this System.Linq.IOrderedQueryable<TSource> source, System.Linq.Expressions.Expression<Func<TSource,TKey>> keySelector);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig class System.Linq.IOrderedQueryable`1<!!TSource> ThenByDescending<TSource, TKey>(class System.Linq.IOrderedQueryable`1<!!TSource> source, class System.Linq.Expressions.Expression`1<class System.Func`2<!!TSource, !!TKey>> keySelector) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Linq.IOrderedQueryable<TSource></ReturnType>
- </ReturnValue>
- <TypeParameters>
- <TypeParameter Name="TSource" />
- <TypeParameter Name="TKey" />
- </TypeParameters>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IOrderedQueryable<TSource>" RefType="this" />
- <Parameter Name="keySelector" Type="System.Linq.Expressions.Expression<System.Func<TSource,TKey>>" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>This method has at least one parameter of type <see cref="T:System.Linq.Expressions.Expression`1" /> whose type argument is one of the <see cref="T:System.Func`2" /> types. For these parameters, you can pass in a lambda expression and it will be compiled to an <see cref="T:System.Linq.Expressions.Expression`1" />.</para>
- <para>The <see cref="M:System.Linq.Queryable.ThenByDescending``2(System.Linq.IOrderedQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.ThenByDescending``2(System.Linq.IOrderedQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}})" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.CreateQuery``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter. The result of calling <see cref="M:System.Linq.IQueryProvider.CreateQuery``1(System.Linq.Expressions.Expression)" /> is cast to type <see cref="T:System.Linq.IOrderedQueryable`1" /> and returned.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.ThenByDescending``2(System.Linq.IOrderedQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}})" /> depends on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that it performs a secondary sort of the elements of <paramref name="source" /> in descending order, based on the key obtained by invoking <paramref name="keySelector" /> on each element of <paramref name="source" />. All previously established sort orders are preserved.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>Performs a subsequent ordering of the elements in a sequence in descending order, according to a key.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>An <see cref="T:System.Linq.IOrderedQueryable`1" /> whose elements are sorted in descending order according to a key.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.Linq.IOrderedQueryable`1" /> that contains elements to sort.</param>
- <param name="keySelector">
- <attribution license="cc4" from="Microsoft" modified="false" />A function to extract a key from each element.</param>
- <typeparam name="TSource">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of <paramref name="source" />.</typeparam>
- <typeparam name="TKey">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the key returned by the function represented by <paramref name="keySelector" />.</typeparam>
- </Docs>
- </Member>
- <Member MemberName="ThenByDescending<TSource,TKey>">
- <MemberSignature Language="C#" Value="public static System.Linq.IOrderedQueryable<TSource> ThenByDescending<TSource,TKey> (this System.Linq.IOrderedQueryable<TSource> source, System.Linq.Expressions.Expression<Func<TSource,TKey>> keySelector, System.Collections.Generic.IComparer<TKey> comparer);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig class System.Linq.IOrderedQueryable`1<!!TSource> ThenByDescending<TSource, TKey>(class System.Linq.IOrderedQueryable`1<!!TSource> source, class System.Linq.Expressions.Expression`1<class System.Func`2<!!TSource, !!TKey>> keySelector, class System.Collections.Generic.IComparer`1<!!TKey> comparer) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Linq.IOrderedQueryable<TSource></ReturnType>
- </ReturnValue>
- <TypeParameters>
- <TypeParameter Name="TSource" />
- <TypeParameter Name="TKey" />
- </TypeParameters>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IOrderedQueryable<TSource>" RefType="this" />
- <Parameter Name="keySelector" Type="System.Linq.Expressions.Expression<System.Func<TSource,TKey>>" />
- <Parameter Name="comparer" Type="System.Collections.Generic.IComparer<TKey>" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>This method has at least one parameter of type <see cref="T:System.Linq.Expressions.Expression`1" /> whose type argument is one of the <see cref="T:System.Func`2" /> types. For these parameters, you can pass in a lambda expression and it will be compiled to an <see cref="T:System.Linq.Expressions.Expression`1" />.</para>
- <para>The <see cref="M:System.Linq.Queryable.ThenBy``2(System.Linq.IOrderedQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}},System.Collections.Generic.IComparer{``1})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.ThenBy``2(System.Linq.IOrderedQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}},System.Collections.Generic.IComparer{``1})" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.CreateQuery``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter. The result of calling <see cref="M:System.Linq.IQueryProvider.CreateQuery``1(System.Linq.Expressions.Expression)" /> is cast to type <see cref="T:System.Linq.IOrderedQueryable`1" /> and returned.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.ThenBy``2(System.Linq.IOrderedQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}},System.Collections.Generic.IComparer{``1})" /> depends on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that it performs a secondary sort of the elements of <paramref name="source" /> in descending order, based on the key obtained by invoking <paramref name="keySelector" /> on each element of <paramref name="source" />. All previously established sort orders are preserved. The <paramref name="comparer" /> parameter is used to compare key values.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>Performs a subsequent ordering of the elements in a sequence in descending order by using a specified comparer.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>A collection whose elements are sorted in descending order according to a key.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.Linq.IOrderedQueryable`1" /> that contains elements to sort.</param>
- <param name="keySelector">
- <attribution license="cc4" from="Microsoft" modified="false" />A function to extract a key from each element.</param>
- <param name="comparer">
- <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.Collections.Generic.IComparer`1" /> to compare keys.</param>
- <typeparam name="TSource">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of <paramref name="source" />.</typeparam>
- <typeparam name="TKey">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the key that is returned by the <paramref name="keySelector" /> function.</typeparam>
- </Docs>
- </Member>
- <Member MemberName="Union<TSource>">
- <MemberSignature Language="C#" Value="public static System.Linq.IQueryable<TSource> Union<TSource> (this System.Linq.IQueryable<TSource> source1, System.Collections.Generic.IEnumerable<TSource> source2);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig class System.Linq.IQueryable`1<!!TSource> Union<TSource>(class System.Linq.IQueryable`1<!!TSource> source1, class System.Collections.Generic.IEnumerable`1<!!TSource> source2) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Linq.IQueryable<TSource></ReturnType>
- </ReturnValue>
- <TypeParameters>
- <TypeParameter Name="TSource" />
- </TypeParameters>
- <Parameters>
- <Parameter Name="source1" Type="System.Linq.IQueryable<TSource>" RefType="this" />
- <Parameter Name="source2" Type="System.Collections.Generic.IEnumerable<TSource>" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The <see cref="M:System.Linq.Queryable.Union``1(System.Linq.IQueryable{``0},System.Collections.Generic.IEnumerable{``0})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.Union``1(System.Linq.IQueryable{``0},System.Collections.Generic.IEnumerable{``0})" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.CreateQuery``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source1" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.Union``1(System.Linq.IQueryable{``0},System.Collections.Generic.IEnumerable{``0})" /> depends on the implementation of the type of the <paramref name="source1" /> parameter. The expected behavior is that the set union of the elements in <paramref name="source1" /> and <paramref name="source2" /> is returned.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>Produces the set union of two sequences by using the default equality comparer.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>An <see cref="T:System.Linq.IQueryable`1" /> that contains the elements from both input sequences, excluding duplicates.</para>
- </returns>
- <param name="source1">
- <attribution license="cc4" from="Microsoft" modified="false" />A sequence whose distinct elements form the first set for the union operation.</param>
- <param name="source2">
- <attribution license="cc4" from="Microsoft" modified="false" />A sequence whose distinct elements form the second set for the union operation.</param>
- <typeparam name="TSource">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of the input sequences.</typeparam>
- </Docs>
- </Member>
- <Member MemberName="Union<TSource>">
- <MemberSignature Language="C#" Value="public static System.Linq.IQueryable<TSource> Union<TSource> (this System.Linq.IQueryable<TSource> source1, System.Collections.Generic.IEnumerable<TSource> source2, System.Collections.Generic.IEqualityComparer<TSource> comparer);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig class System.Linq.IQueryable`1<!!TSource> Union<TSource>(class System.Linq.IQueryable`1<!!TSource> source1, class System.Collections.Generic.IEnumerable`1<!!TSource> source2, class System.Collections.Generic.IEqualityComparer`1<!!TSource> comparer) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Linq.IQueryable<TSource></ReturnType>
- </ReturnValue>
- <TypeParameters>
- <TypeParameter Name="TSource" />
- </TypeParameters>
- <Parameters>
- <Parameter Name="source1" Type="System.Linq.IQueryable<TSource>" RefType="this" />
- <Parameter Name="source2" Type="System.Collections.Generic.IEnumerable<TSource>" />
- <Parameter Name="comparer" Type="System.Collections.Generic.IEqualityComparer<TSource>" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The <see cref="M:System.Linq.Queryable.Union``1(System.Linq.IQueryable{``0},System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEqualityComparer{``0})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.Union``1(System.Linq.IQueryable{``0},System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEqualityComparer{``0})" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.CreateQuery``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source1" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.Union``1(System.Linq.IQueryable{``0},System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEqualityComparer{``0})" /> depends on the implementation of the type of the <paramref name="source1" /> parameter. The expected behavior is that the set union of the elements in <paramref name="source1" /> and <paramref name="source2" /> is returned. The <paramref name="comparer" /> parameter is used to compare values.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>Produces the set union of two sequences by using a specified <see cref="T:System.Collections.Generic.IEqualityComparer`1" />.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>An <see cref="T:System.Linq.IQueryable`1" /> that contains the elements from both input sequences, excluding duplicates.</para>
- </returns>
- <param name="source1">
- <attribution license="cc4" from="Microsoft" modified="false" />A sequence whose distinct elements form the first set for the union operation.</param>
- <param name="source2">
- <attribution license="cc4" from="Microsoft" modified="false" />A sequence whose distinct elements form the second set for the union operation.</param>
- <param name="comparer">
- <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> to compare values.</param>
- <typeparam name="TSource">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of the input sequences.</typeparam>
- </Docs>
- </Member>
- <Member MemberName="Where<TSource>">
- <MemberSignature Language="C#" Value="public static System.Linq.IQueryable<TSource> Where<TSource> (this System.Linq.IQueryable<TSource> source, System.Linq.Expressions.Expression<Func<TSource,bool>> predicate);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig class System.Linq.IQueryable`1<!!TSource> Where<TSource>(class System.Linq.IQueryable`1<!!TSource> source, class System.Linq.Expressions.Expression`1<class System.Func`2<!!TSource, bool>> predicate) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Linq.IQueryable<TSource></ReturnType>
- </ReturnValue>
- <TypeParameters>
- <TypeParameter Name="TSource" />
- </TypeParameters>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IQueryable<TSource>" RefType="this" />
- <Parameter Name="predicate" Type="System.Linq.Expressions.Expression<System.Func<TSource,System.Boolean>>" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>This method has at least one parameter of type <see cref="T:System.Linq.Expressions.Expression`1" /> whose type argument is one of the <see cref="T:System.Func`2" /> types. For these parameters, you can pass in a lambda expression and it will be compiled to an <see cref="T:System.Linq.Expressions.Expression`1" />.</para>
- <para>The <see cref="M:System.Linq.Queryable.Where``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.Where``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}})" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.CreateQuery(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.Where``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}})" /> depends on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that it returns the elements from <paramref name="source" /> that satisfy the condition specified by <paramref name="predicate" />.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>Filters a sequence of values based on a predicate.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>An <see cref="T:System.Linq.IQueryable`1" /> that contains elements from the input sequence that satisfy the condition specified by <paramref name="predicate" />.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.Linq.IQueryable`1" /> to filter.</param>
- <param name="predicate">
- <attribution license="cc4" from="Microsoft" modified="false" />A function to test each element for a condition.</param>
- <typeparam name="TSource">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of <paramref name="source" />.</typeparam>
- </Docs>
- </Member>
- <Member MemberName="Where<TSource>">
- <MemberSignature Language="C#" Value="public static System.Linq.IQueryable<TSource> Where<TSource> (this System.Linq.IQueryable<TSource> source, System.Linq.Expressions.Expression<Func<TSource,int,bool>> predicate);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig class System.Linq.IQueryable`1<!!TSource> Where<TSource>(class System.Linq.IQueryable`1<!!TSource> source, class System.Linq.Expressions.Expression`1<class System.Func`3<!!TSource, int32, bool>> predicate) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Linq.IQueryable<TSource></ReturnType>
- </ReturnValue>
- <TypeParameters>
- <TypeParameter Name="TSource" />
- </TypeParameters>
- <Parameters>
- <Parameter Name="source" Type="System.Linq.IQueryable<TSource>" RefType="this" />
- <Parameter Name="predicate" Type="System.Linq.Expressions.Expression<System.Func<TSource,System.Int32,System.Boolean>>" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>This method has at least one parameter of type <see cref="T:System.Linq.Expressions.Expression`1" /> whose type argument is one of the <see cref="T:System.Func`2" /> types. For these parameters, you can pass in a lambda expression and it will be compiled to an <see cref="T:System.Linq.Expressions.Expression`1" />.</para>
- <para>The <see cref="M:System.Linq.Queryable.Where``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Int32,System.Boolean}})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.Where``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Int32,System.Boolean}})" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.CreateQuery(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source" /> parameter.</para>
- <para>The query behavior that occurs as a result of executing an expression tree that represents calling <see cref="M:System.Linq.Queryable.Where``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Int32,System.Boolean}})" /> depends on the implementation of the type of the <paramref name="source" /> parameter. The expected behavior is that it returns the elements from <paramref name="source" /> that satisfy the condition specified by <paramref name="predicate" />. The index of each source element is provided as the second argument to <paramref name="predicate" />.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>Filters a sequence of values based on a predicate. Each element's index is used in the logic of the predicate function.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>An <see cref="T:System.Linq.IQueryable`1" /> that contains elements from the input sequence that satisfy the condition specified by <paramref name="predicate" />.</para>
- </returns>
- <param name="source">
- <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.Linq.IQueryable`1" /> to filter.</param>
- <param name="predicate">
- <attribution license="cc4" from="Microsoft" modified="false" />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>
- <typeparam name="TSource">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of <paramref name="source" />.</typeparam>
- </Docs>
- </Member>
- <Member MemberName="Zip<TFirst,TSecond,TResult>">
- <MemberSignature Language="C#" Value="public static System.Linq.IQueryable<TResult> Zip<TFirst,TSecond,TResult> (this System.Linq.IQueryable<TFirst> source1, System.Collections.Generic.IEnumerable<TSecond> source2, System.Linq.Expressions.Expression<Func<TFirst,TSecond,TResult>> resultSelector);" />
- <MemberSignature Language="ILAsm" Value=".method public static hidebysig class System.Linq.IQueryable`1<!!TResult> Zip<TFirst, TSecond, TResult>(class System.Linq.IQueryable`1<!!TFirst> source1, class System.Collections.Generic.IEnumerable`1<!!TSecond> source2, class System.Linq.Expressions.Expression`1<class System.Func`3<!!TFirst, !!TSecond, !!TResult>> resultSelector) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Linq.IQueryable<TResult></ReturnType>
- </ReturnValue>
- <TypeParameters>
- <TypeParameter Name="TFirst" />
- <TypeParameter Name="TSecond" />
- <TypeParameter Name="TResult" />
- </TypeParameters>
- <Parameters>
- <Parameter Name="source1" Type="System.Linq.IQueryable<TFirst>" RefType="this" />
- <Parameter Name="source2" Type="System.Collections.Generic.IEnumerable<TSecond>" />
- <Parameter Name="resultSelector" Type="System.Linq.Expressions.Expression<System.Func<TFirst,TSecond,TResult>>" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The <see cref="M:System.Linq.Queryable.Zip``3(System.Linq.IQueryable{``0},System.Collections.Generic.IEnumerable{``1},System.Linq.Expressions.Expression{System.Func{``0,``1,``2}})" /> method generates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents calling <see cref="M:System.Linq.Queryable.Zip``3(System.Linq.IQueryable{``0},System.Collections.Generic.IEnumerable{``1},System.Linq.Expressions.Expression{System.Func{``0,``1,``2}})" /> itself as a constructed generic method. It then passes the <see cref="T:System.Linq.Expressions.MethodCallExpression" /> to the <see cref="M:System.Linq.IQueryProvider.CreateQuery``1(System.Linq.Expressions.Expression)" /> method of the <see cref="T:System.Linq.IQueryProvider" /> represented by the <see cref="P:System.Linq.IQueryable.Provider" /> property of the <paramref name="source1" /> parameter.</para>
- <para>The method merges each element of the first sequence with an element that has the same index in the second sequence. If the sequences do not have the same number of elements, the method merges sequences until it reaches the end of one of them. For example, if one sequence has three elements and the other one has four, the resulting sequence will have only three elements.</para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>Merges two sequences by using the specified predicate function.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>An <see cref="T:System.Linq.IQueryable`1" /> that contains merged elements of two input sequences.</para>
- </returns>
- <param name="source1">
- <attribution license="cc4" from="Microsoft" modified="false" />The first sequence to merge.</param>
- <param name="source2">
- <attribution license="cc4" from="Microsoft" modified="false" />The second sequence to merge.</param>
- <param name="resultSelector">
- <attribution license="cc4" from="Microsoft" modified="false" />A function that specifies how to merge the elements from the two sequences.</param>
- <typeparam name="TFirst">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of the first input sequence.</typeparam>
- <typeparam name="TSecond">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of the second input sequence.</typeparam>
- <typeparam name="TResult">
- <attribution license="cc4" from="Microsoft" modified="false" />The type of the elements of the result sequence.</typeparam>
- </Docs>
- </Member>
- </Members>
- </Type>
|