C# Class MvcApi.Query.DynamicQueryable

Exibir arquivo Open project: dax70/MvcApi

Public Methods

Method Description
OrderBy ( this source, string ordering, QueryResolver queryResolver ) : IQueryable
Skip ( this source, int count ) : IQueryable
Take ( this source, int count ) : IQueryable
Where ( this source, string predicate, QueryResolver queryResolver ) : IQueryable

Method Details

OrderBy() public static method

public static OrderBy ( this source, string ordering, QueryResolver queryResolver ) : IQueryable
source this
ordering string
queryResolver QueryResolver
return IQueryable

Skip() public static method

public static Skip ( this source, int count ) : IQueryable
source this
count int
return IQueryable

Take() public static method

public static Take ( this source, int count ) : IQueryable
source this
count int
return IQueryable

Where() public static method

public static Where ( this source, string predicate, QueryResolver queryResolver ) : IQueryable
source this
predicate string
queryResolver QueryResolver
return IQueryable