Permalink
Cannot retrieve contributors at this time
Fetching contributors…
| <Type Name="IMobileServiceTableQuery<T>" FullName="Microsoft.WindowsAzure.MobileServices.IMobileServiceTableQuery<T>"> | |
| <TypeSignature Language="C#" Value="public interface IMobileServiceTableQuery<T>" /> | |
| <TypeSignature Language="ILAsm" Value=".class public interface auto ansi abstract IMobileServiceTableQuery`1<T>" /> | |
| <TypeSignature Language="DocId" Value="T:Microsoft.WindowsAzure.MobileServices.IMobileServiceTableQuery`1" /> | |
| <AssemblyInfo> | |
| <AssemblyName>Microsoft.Azure.Mobile.Client</AssemblyName> | |
| <AssemblyVersion>4.0.0.0</AssemblyVersion> | |
| </AssemblyInfo> | |
| <TypeParameters> | |
| <TypeParameter Name="T" /> | |
| </TypeParameters> | |
| <Interfaces /> | |
| <Docs> | |
| <typeparam name="T">To be added.</typeparam> | |
| <summary> | |
| Represents a query that can be evaluated against a Mobile Services | |
| table. MobileServiceTableQuery instances can be obtained via | |
| MobileServiceClient.Query(of T)(). | |
| </summary> | |
| <remarks> | |
| Rather than implenting IQueryable directly, we've implemented the | |
| portion of the LINQ query pattern we support on MobileServiceTableQuery | |
| objects. MobileServiceTableQuery instances are used to build up | |
| IQueryables from LINQ query operations. | |
| </remarks> | |
| </Docs> | |
| <Members> | |
| <Member MemberName="IncludeDeleted"> | |
| <MemberSignature Language="C#" Value="public Microsoft.WindowsAzure.MobileServices.IMobileServiceTableQuery<T> IncludeDeleted ();" /> | |
| <MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Microsoft.WindowsAzure.MobileServices.IMobileServiceTableQuery`1<!T> IncludeDeleted() cil managed" /> | |
| <MemberSignature Language="DocId" Value="M:Microsoft.WindowsAzure.MobileServices.IMobileServiceTableQuery`1.IncludeDeleted" /> | |
| <MemberType>Method</MemberType> | |
| <AssemblyInfo> | |
| <AssemblyVersion>4.0.0.0</AssemblyVersion> | |
| <AssemblyName>Microsoft.Azure.Mobile.Client</AssemblyName> | |
| </AssemblyInfo> | |
| <ReturnValue> | |
| <ReturnType>Microsoft.WindowsAzure.MobileServices.IMobileServiceTableQuery<T></ReturnType> | |
| </ReturnValue> | |
| <Parameters /> | |
| <Docs> | |
| <summary> | |
| Ensure the query will get the deleted records. | |
| </summary> | |
| <returns> | |
| The query object. | |
| </returns> | |
| <remarks>To be added.</remarks> | |
| </Docs> | |
| </Member> | |
| <Member MemberName="IncludeTotalCount"> | |
| <MemberSignature Language="C#" Value="public Microsoft.WindowsAzure.MobileServices.IMobileServiceTableQuery<T> IncludeTotalCount ();" /> | |
| <MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Microsoft.WindowsAzure.MobileServices.IMobileServiceTableQuery`1<!T> IncludeTotalCount() cil managed" /> | |
| <MemberSignature Language="DocId" Value="M:Microsoft.WindowsAzure.MobileServices.IMobileServiceTableQuery`1.IncludeTotalCount" /> | |
| <MemberType>Method</MemberType> | |
| <AssemblyInfo> | |
| <AssemblyVersion>4.0.0.0</AssemblyVersion> | |
| <AssemblyName>Microsoft.Azure.Mobile.Client</AssemblyName> | |
| </AssemblyInfo> | |
| <ReturnValue> | |
| <ReturnType>Microsoft.WindowsAzure.MobileServices.IMobileServiceTableQuery<T></ReturnType> | |
| </ReturnValue> | |
| <Parameters /> | |
| <Docs> | |
| <summary> | |
| Ensure the query will get the total count for all the records that | |
| would have been returned ignoring any take paging/limit clause | |
| specified by client or server. | |
| </summary> | |
| <returns> | |
| The query object. | |
| </returns> | |
| <remarks>To be added.</remarks> | |
| </Docs> | |
| </Member> | |
| <Member MemberName="OrderBy<TKey>"> | |
| <MemberSignature Language="C#" Value="public Microsoft.WindowsAzure.MobileServices.IMobileServiceTableQuery<T> OrderBy<TKey> (System.Linq.Expressions.Expression<Func<T,TKey>> keySelector);" /> | |
| <MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Microsoft.WindowsAzure.MobileServices.IMobileServiceTableQuery`1<!T> OrderBy<TKey>(class System.Linq.Expressions.Expression`1<class System.Func`2<!T, !!TKey>> keySelector) cil managed" /> | |
| <MemberSignature Language="DocId" Value="M:Microsoft.WindowsAzure.MobileServices.IMobileServiceTableQuery`1.OrderBy``1(System.Linq.Expressions.Expression{System.Func{`0,``0}})" /> | |
| <MemberType>Method</MemberType> | |
| <AssemblyInfo> | |
| <AssemblyVersion>4.0.0.0</AssemblyVersion> | |
| <AssemblyName>Microsoft.Azure.Mobile.Client</AssemblyName> | |
| </AssemblyInfo> | |
| <ReturnValue> | |
| <ReturnType>Microsoft.WindowsAzure.MobileServices.IMobileServiceTableQuery<T></ReturnType> | |
| </ReturnValue> | |
| <TypeParameters> | |
| <TypeParameter Name="TKey" /> | |
| </TypeParameters> | |
| <Parameters> | |
| <Parameter Name="keySelector" Type="System.Linq.Expressions.Expression<System.Func<T,TKey>>" /> | |
| </Parameters> | |
| <Docs> | |
| <typeparam name="TKey"> | |
| The type of the member being ordered by. | |
| </typeparam> | |
| <param name="keySelector"> | |
| The expression selecting the member to order by. | |
| </param> | |
| <summary> | |
| Applies the specified ascending order clause to the source query. | |
| </summary> | |
| <returns> | |
| The composed query. | |
| </returns> | |
| <remarks>To be added.</remarks> | |
| </Docs> | |
| </Member> | |
| <Member MemberName="OrderByDescending<TKey>"> | |
| <MemberSignature Language="C#" Value="public Microsoft.WindowsAzure.MobileServices.IMobileServiceTableQuery<T> OrderByDescending<TKey> (System.Linq.Expressions.Expression<Func<T,TKey>> keySelector);" /> | |
| <MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Microsoft.WindowsAzure.MobileServices.IMobileServiceTableQuery`1<!T> OrderByDescending<TKey>(class System.Linq.Expressions.Expression`1<class System.Func`2<!T, !!TKey>> keySelector) cil managed" /> | |
| <MemberSignature Language="DocId" Value="M:Microsoft.WindowsAzure.MobileServices.IMobileServiceTableQuery`1.OrderByDescending``1(System.Linq.Expressions.Expression{System.Func{`0,``0}})" /> | |
| <MemberType>Method</MemberType> | |
| <AssemblyInfo> | |
| <AssemblyVersion>4.0.0.0</AssemblyVersion> | |
| <AssemblyName>Microsoft.Azure.Mobile.Client</AssemblyName> | |
| </AssemblyInfo> | |
| <ReturnValue> | |
| <ReturnType>Microsoft.WindowsAzure.MobileServices.IMobileServiceTableQuery<T></ReturnType> | |
| </ReturnValue> | |
| <TypeParameters> | |
| <TypeParameter Name="TKey" /> | |
| </TypeParameters> | |
| <Parameters> | |
| <Parameter Name="keySelector" Type="System.Linq.Expressions.Expression<System.Func<T,TKey>>" /> | |
| </Parameters> | |
| <Docs> | |
| <typeparam name="TKey"> | |
| The type of the member being ordered by. | |
| </typeparam> | |
| <param name="keySelector"> | |
| The expression selecting the member to order by. | |
| </param> | |
| <summary> | |
| Applies the specified descending order clause to the source query. | |
| </summary> | |
| <returns> | |
| The composed query. | |
| </returns> | |
| <remarks>To be added.</remarks> | |
| </Docs> | |
| </Member> | |
| <Member MemberName="Parameters"> | |
| <MemberSignature Language="C#" Value="public System.Collections.Generic.IDictionary<string,string> Parameters { get; }" /> | |
| <MemberSignature Language="ILAsm" Value=".property instance class System.Collections.Generic.IDictionary`2<string, string> Parameters" /> | |
| <MemberSignature Language="DocId" Value="P:Microsoft.WindowsAzure.MobileServices.IMobileServiceTableQuery`1.Parameters" /> | |
| <MemberType>Property</MemberType> | |
| <AssemblyInfo> | |
| <AssemblyVersion>4.0.0.0</AssemblyVersion> | |
| <AssemblyName>Microsoft.Azure.Mobile.Client</AssemblyName> | |
| </AssemblyInfo> | |
| <ReturnValue> | |
| <ReturnType>System.Collections.Generic.IDictionary<System.String,System.String></ReturnType> | |
| </ReturnValue> | |
| <Docs> | |
| <summary> | |
| The user-defined query string parameters to include with the query. | |
| </summary> | |
| <value>To be added.</value> | |
| <remarks>To be added.</remarks> | |
| </Docs> | |
| </Member> | |
| <Member MemberName="Query"> | |
| <MemberSignature Language="C#" Value="public System.Linq.IQueryable<T> Query { get; set; }" /> | |
| <MemberSignature Language="ILAsm" Value=".property instance class System.Linq.IQueryable`1<!T> Query" /> | |
| <MemberSignature Language="DocId" Value="P:Microsoft.WindowsAzure.MobileServices.IMobileServiceTableQuery`1.Query" /> | |
| <MemberType>Property</MemberType> | |
| <AssemblyInfo> | |
| <AssemblyVersion>4.0.0.0</AssemblyVersion> | |
| <AssemblyName>Microsoft.Azure.Mobile.Client</AssemblyName> | |
| </AssemblyInfo> | |
| <ReturnValue> | |
| <ReturnType>System.Linq.IQueryable<T></ReturnType> | |
| </ReturnValue> | |
| <Docs> | |
| <summary> | |
| Gets the underlying IQueryable associated with this query. | |
| </summary> | |
| <value>To be added.</value> | |
| <remarks>To be added.</remarks> | |
| </Docs> | |
| </Member> | |
| <Member MemberName="RequestTotalCount"> | |
| <MemberSignature Language="C#" Value="public bool RequestTotalCount { get; }" /> | |
| <MemberSignature Language="ILAsm" Value=".property instance bool RequestTotalCount" /> | |
| <MemberSignature Language="DocId" Value="P:Microsoft.WindowsAzure.MobileServices.IMobileServiceTableQuery`1.RequestTotalCount" /> | |
| <MemberType>Property</MemberType> | |
| <AssemblyInfo> | |
| <AssemblyVersion>4.0.0.0</AssemblyVersion> | |
| <AssemblyName>Microsoft.Azure.Mobile.Client</AssemblyName> | |
| </AssemblyInfo> | |
| <ReturnValue> | |
| <ReturnType>System.Boolean</ReturnType> | |
| </ReturnValue> | |
| <Docs> | |
| <summary> | |
| Gets a value indicating whether the query will request the total | |
| count for all the records that would have been returned ignoring | |
| any take paging/limit clause specified by client or server. | |
| </summary> | |
| <value>To be added.</value> | |
| <remarks>To be added.</remarks> | |
| </Docs> | |
| </Member> | |
| <Member MemberName="Select<U>"> | |
| <MemberSignature Language="C#" Value="public Microsoft.WindowsAzure.MobileServices.IMobileServiceTableQuery<U> Select<U> (System.Linq.Expressions.Expression<Func<T,U>> selector);" /> | |
| <MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Microsoft.WindowsAzure.MobileServices.IMobileServiceTableQuery`1<!!U> Select<U>(class System.Linq.Expressions.Expression`1<class System.Func`2<!T, !!U>> selector) cil managed" /> | |
| <MemberSignature Language="DocId" Value="M:Microsoft.WindowsAzure.MobileServices.IMobileServiceTableQuery`1.Select``1(System.Linq.Expressions.Expression{System.Func{`0,``0}})" /> | |
| <MemberType>Method</MemberType> | |
| <AssemblyInfo> | |
| <AssemblyVersion>4.0.0.0</AssemblyVersion> | |
| <AssemblyName>Microsoft.Azure.Mobile.Client</AssemblyName> | |
| </AssemblyInfo> | |
| <ReturnValue> | |
| <ReturnType>Microsoft.WindowsAzure.MobileServices.IMobileServiceTableQuery<U></ReturnType> | |
| </ReturnValue> | |
| <TypeParameters> | |
| <TypeParameter Name="U" /> | |
| </TypeParameters> | |
| <Parameters> | |
| <Parameter Name="selector" Type="System.Linq.Expressions.Expression<System.Func<T,U>>" /> | |
| </Parameters> | |
| <Docs> | |
| <typeparam name="U"> | |
| Type representing the projected result of the query. | |
| </typeparam> | |
| <param name="selector"> | |
| The selector function. | |
| </param> | |
| <summary> | |
| Applies the specified selection to the source query. | |
| </summary> | |
| <returns> | |
| The composed query. | |
| </returns> | |
| <remarks>To be added.</remarks> | |
| </Docs> | |
| </Member> | |
| <Member MemberName="Skip"> | |
| <MemberSignature Language="C#" Value="public Microsoft.WindowsAzure.MobileServices.IMobileServiceTableQuery<T> Skip (int count);" /> | |
| <MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Microsoft.WindowsAzure.MobileServices.IMobileServiceTableQuery`1<!T> Skip(int32 count) cil managed" /> | |
| <MemberSignature Language="DocId" Value="M:Microsoft.WindowsAzure.MobileServices.IMobileServiceTableQuery`1.Skip(System.Int32)" /> | |
| <MemberType>Method</MemberType> | |
| <AssemblyInfo> | |
| <AssemblyVersion>4.0.0.0</AssemblyVersion> | |
| <AssemblyName>Microsoft.Azure.Mobile.Client</AssemblyName> | |
| </AssemblyInfo> | |
| <ReturnValue> | |
| <ReturnType>Microsoft.WindowsAzure.MobileServices.IMobileServiceTableQuery<T></ReturnType> | |
| </ReturnValue> | |
| <Parameters> | |
| <Parameter Name="count" Type="System.Int32" /> | |
| </Parameters> | |
| <Docs> | |
| <param name="count"> | |
| The number to skip. | |
| </param> | |
| <summary> | |
| Applies the specified skip clause to the source query. | |
| </summary> | |
| <returns> | |
| The composed query. | |
| </returns> | |
| <remarks>To be added.</remarks> | |
| </Docs> | |
| </Member> | |
| <Member MemberName="Table"> | |
| <MemberSignature Language="C#" Value="public Microsoft.WindowsAzure.MobileServices.IMobileServiceTable<T> Table { get; }" /> | |
| <MemberSignature Language="ILAsm" Value=".property instance class Microsoft.WindowsAzure.MobileServices.IMobileServiceTable`1<!T> Table" /> | |
| <MemberSignature Language="DocId" Value="P:Microsoft.WindowsAzure.MobileServices.IMobileServiceTableQuery`1.Table" /> | |
| <MemberType>Property</MemberType> | |
| <AssemblyInfo> | |
| <AssemblyVersion>4.0.0.0</AssemblyVersion> | |
| <AssemblyName>Microsoft.Azure.Mobile.Client</AssemblyName> | |
| </AssemblyInfo> | |
| <ReturnValue> | |
| <ReturnType>Microsoft.WindowsAzure.MobileServices.IMobileServiceTable<T></ReturnType> | |
| </ReturnValue> | |
| <Docs> | |
| <summary> | |
| Gets the MobileServiceTable being queried. | |
| </summary> | |
| <value>To be added.</value> | |
| <remarks>To be added.</remarks> | |
| </Docs> | |
| </Member> | |
| <Member MemberName="Take"> | |
| <MemberSignature Language="C#" Value="public Microsoft.WindowsAzure.MobileServices.IMobileServiceTableQuery<T> Take (int count);" /> | |
| <MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Microsoft.WindowsAzure.MobileServices.IMobileServiceTableQuery`1<!T> Take(int32 count) cil managed" /> | |
| <MemberSignature Language="DocId" Value="M:Microsoft.WindowsAzure.MobileServices.IMobileServiceTableQuery`1.Take(System.Int32)" /> | |
| <MemberType>Method</MemberType> | |
| <AssemblyInfo> | |
| <AssemblyVersion>4.0.0.0</AssemblyVersion> | |
| <AssemblyName>Microsoft.Azure.Mobile.Client</AssemblyName> | |
| </AssemblyInfo> | |
| <ReturnValue> | |
| <ReturnType>Microsoft.WindowsAzure.MobileServices.IMobileServiceTableQuery<T></ReturnType> | |
| </ReturnValue> | |
| <Parameters> | |
| <Parameter Name="count" Type="System.Int32" /> | |
| </Parameters> | |
| <Docs> | |
| <param name="count"> | |
| The number to take. | |
| </param> | |
| <summary> | |
| Applies the specified take clause to the source query. | |
| </summary> | |
| <returns> | |
| The composed query. | |
| </returns> | |
| <remarks>To be added.</remarks> | |
| </Docs> | |
| </Member> | |
| <Member MemberName="ThenBy<TKey>"> | |
| <MemberSignature Language="C#" Value="public Microsoft.WindowsAzure.MobileServices.IMobileServiceTableQuery<T> ThenBy<TKey> (System.Linq.Expressions.Expression<Func<T,TKey>> keySelector);" /> | |
| <MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Microsoft.WindowsAzure.MobileServices.IMobileServiceTableQuery`1<!T> ThenBy<TKey>(class System.Linq.Expressions.Expression`1<class System.Func`2<!T, !!TKey>> keySelector) cil managed" /> | |
| <MemberSignature Language="DocId" Value="M:Microsoft.WindowsAzure.MobileServices.IMobileServiceTableQuery`1.ThenBy``1(System.Linq.Expressions.Expression{System.Func{`0,``0}})" /> | |
| <MemberType>Method</MemberType> | |
| <AssemblyInfo> | |
| <AssemblyVersion>4.0.0.0</AssemblyVersion> | |
| <AssemblyName>Microsoft.Azure.Mobile.Client</AssemblyName> | |
| </AssemblyInfo> | |
| <ReturnValue> | |
| <ReturnType>Microsoft.WindowsAzure.MobileServices.IMobileServiceTableQuery<T></ReturnType> | |
| </ReturnValue> | |
| <TypeParameters> | |
| <TypeParameter Name="TKey" /> | |
| </TypeParameters> | |
| <Parameters> | |
| <Parameter Name="keySelector" Type="System.Linq.Expressions.Expression<System.Func<T,TKey>>" /> | |
| </Parameters> | |
| <Docs> | |
| <typeparam name="TKey"> | |
| The type of the member being ordered by. | |
| </typeparam> | |
| <param name="keySelector"> | |
| The expression selecting the member to order by. | |
| </param> | |
| <summary> | |
| Applies the specified ascending order clause to the source query. | |
| </summary> | |
| <returns> | |
| The composed query. | |
| </returns> | |
| <remarks>To be added.</remarks> | |
| </Docs> | |
| </Member> | |
| <Member MemberName="ThenByDescending<TKey>"> | |
| <MemberSignature Language="C#" Value="public Microsoft.WindowsAzure.MobileServices.IMobileServiceTableQuery<T> ThenByDescending<TKey> (System.Linq.Expressions.Expression<Func<T,TKey>> keySelector);" /> | |
| <MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Microsoft.WindowsAzure.MobileServices.IMobileServiceTableQuery`1<!T> ThenByDescending<TKey>(class System.Linq.Expressions.Expression`1<class System.Func`2<!T, !!TKey>> keySelector) cil managed" /> | |
| <MemberSignature Language="DocId" Value="M:Microsoft.WindowsAzure.MobileServices.IMobileServiceTableQuery`1.ThenByDescending``1(System.Linq.Expressions.Expression{System.Func{`0,``0}})" /> | |
| <MemberType>Method</MemberType> | |
| <AssemblyInfo> | |
| <AssemblyVersion>4.0.0.0</AssemblyVersion> | |
| <AssemblyName>Microsoft.Azure.Mobile.Client</AssemblyName> | |
| </AssemblyInfo> | |
| <ReturnValue> | |
| <ReturnType>Microsoft.WindowsAzure.MobileServices.IMobileServiceTableQuery<T></ReturnType> | |
| </ReturnValue> | |
| <TypeParameters> | |
| <TypeParameter Name="TKey" /> | |
| </TypeParameters> | |
| <Parameters> | |
| <Parameter Name="keySelector" Type="System.Linq.Expressions.Expression<System.Func<T,TKey>>" /> | |
| </Parameters> | |
| <Docs> | |
| <typeparam name="TKey"> | |
| The type of the member being ordered by. | |
| </typeparam> | |
| <param name="keySelector"> | |
| The expression selecting the member to order by. | |
| </param> | |
| <summary> | |
| Applies the specified descending order clause to the source query. | |
| </summary> | |
| <returns> | |
| The composed query. | |
| </returns> | |
| <remarks>To be added.</remarks> | |
| </Docs> | |
| </Member> | |
| <Member MemberName="ToEnumerableAsync"> | |
| <MemberSignature Language="C#" Value="public System.Threading.Tasks.Task<System.Collections.Generic.IEnumerable<T>> ToEnumerableAsync ();" /> | |
| <MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.Threading.Tasks.Task`1<class System.Collections.Generic.IEnumerable`1<!T>> ToEnumerableAsync() cil managed" /> | |
| <MemberSignature Language="DocId" Value="M:Microsoft.WindowsAzure.MobileServices.IMobileServiceTableQuery`1.ToEnumerableAsync" /> | |
| <MemberType>Method</MemberType> | |
| <AssemblyInfo> | |
| <AssemblyVersion>4.0.0.0</AssemblyVersion> | |
| <AssemblyName>Microsoft.Azure.Mobile.Client</AssemblyName> | |
| </AssemblyInfo> | |
| <ReturnValue> | |
| <ReturnType>System.Threading.Tasks.Task<System.Collections.Generic.IEnumerable<T>></ReturnType> | |
| </ReturnValue> | |
| <Parameters /> | |
| <Docs> | |
| <summary> | |
| Evalute the query asynchronously and return the results. | |
| </summary> | |
| <returns> | |
| The evaluated query results. | |
| </returns> | |
| <remarks>To be added.</remarks> | |
| </Docs> | |
| </Member> | |
| <Member MemberName="ToListAsync"> | |
| <MemberSignature Language="C#" Value="public System.Threading.Tasks.Task<System.Collections.Generic.List<T>> ToListAsync ();" /> | |
| <MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.Threading.Tasks.Task`1<class System.Collections.Generic.List`1<!T>> ToListAsync() cil managed" /> | |
| <MemberSignature Language="DocId" Value="M:Microsoft.WindowsAzure.MobileServices.IMobileServiceTableQuery`1.ToListAsync" /> | |
| <MemberType>Method</MemberType> | |
| <AssemblyInfo> | |
| <AssemblyVersion>4.0.0.0</AssemblyVersion> | |
| <AssemblyName>Microsoft.Azure.Mobile.Client</AssemblyName> | |
| </AssemblyInfo> | |
| <ReturnValue> | |
| <ReturnType>System.Threading.Tasks.Task<System.Collections.Generic.List<T>></ReturnType> | |
| </ReturnValue> | |
| <Parameters /> | |
| <Docs> | |
| <summary> | |
| Evalute the query asynchronously and return the results in a new | |
| List. | |
| </summary> | |
| <returns> | |
| The evaluated query results as a List. | |
| </returns> | |
| <remarks>To be added.</remarks> | |
| </Docs> | |
| </Member> | |
| <Member MemberName="Where"> | |
| <MemberSignature Language="C#" Value="public Microsoft.WindowsAzure.MobileServices.IMobileServiceTableQuery<T> Where (System.Linq.Expressions.Expression<Func<T,bool>> predicate);" /> | |
| <MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Microsoft.WindowsAzure.MobileServices.IMobileServiceTableQuery`1<!T> Where(class System.Linq.Expressions.Expression`1<class System.Func`2<!T, bool>> predicate) cil managed" /> | |
| <MemberSignature Language="DocId" Value="M:Microsoft.WindowsAzure.MobileServices.IMobileServiceTableQuery`1.Where(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})" /> | |
| <MemberType>Method</MemberType> | |
| <AssemblyInfo> | |
| <AssemblyVersion>4.0.0.0</AssemblyVersion> | |
| <AssemblyName>Microsoft.Azure.Mobile.Client</AssemblyName> | |
| </AssemblyInfo> | |
| <ReturnValue> | |
| <ReturnType>Microsoft.WindowsAzure.MobileServices.IMobileServiceTableQuery<T></ReturnType> | |
| </ReturnValue> | |
| <Parameters> | |
| <Parameter Name="predicate" Type="System.Linq.Expressions.Expression<System.Func<T,System.Boolean>>" /> | |
| </Parameters> | |
| <Docs> | |
| <param name="predicate"> | |
| The filter predicate. | |
| </param> | |
| <summary> | |
| Applies the specified filter predicate to the source query. | |
| </summary> | |
| <returns> | |
| The composed query. | |
| </returns> | |
| <remarks>To be added.</remarks> | |
| </Docs> | |
| </Member> | |
| <Member MemberName="WithParameters"> | |
| <MemberSignature Language="C#" Value="public Microsoft.WindowsAzure.MobileServices.IMobileServiceTableQuery<T> WithParameters (System.Collections.Generic.IDictionary<string,string> parameters);" /> | |
| <MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Microsoft.WindowsAzure.MobileServices.IMobileServiceTableQuery`1<!T> WithParameters(class System.Collections.Generic.IDictionary`2<string, string> parameters) cil managed" /> | |
| <MemberSignature Language="DocId" Value="M:Microsoft.WindowsAzure.MobileServices.IMobileServiceTableQuery`1.WithParameters(System.Collections.Generic.IDictionary{System.String,System.String})" /> | |
| <MemberType>Method</MemberType> | |
| <AssemblyInfo> | |
| <AssemblyVersion>4.0.0.0</AssemblyVersion> | |
| <AssemblyName>Microsoft.Azure.Mobile.Client</AssemblyName> | |
| </AssemblyInfo> | |
| <ReturnValue> | |
| <ReturnType>Microsoft.WindowsAzure.MobileServices.IMobileServiceTableQuery<T></ReturnType> | |
| </ReturnValue> | |
| <Parameters> | |
| <Parameter Name="parameters" Type="System.Collections.Generic.IDictionary<System.String,System.String>" /> | |
| </Parameters> | |
| <Docs> | |
| <param name="parameters"> | |
| The parameters to apply. | |
| </param> | |
| <summary> | |
| Applies to the source query the specified string key-value | |
| pairs to be used as user-defined parameters with the request URI | |
| query string. | |
| </summary> | |
| <returns> | |
| The composed query. | |
| </returns> | |
| <remarks>To be added.</remarks> | |
| </Docs> | |
| </Member> | |
| </Members> | |
| </Type> |