C# 클래스 Source.DLaB.Xrm.RetrieveAllEntities

파일 보기 프로젝트 열기: daryllabar/XrmUnitTest.Example

Private Properties

프로퍼티 타입 설명
GetAllEntitiesInstance IEnumerable
GetEntitiesWithCookie EntitiesWithCookie
UpdatePageCount void

공개 메소드들

메소드 설명
GetAllEntities ( IOrganizationService service, QueryExpression qe, int? maxCount = null, int? pageSize = null, bool async = false ) : IEnumerable

Gets all entities.

비공개 메소드들

메소드 설명
GetAllEntitiesInstance ( IOrganizationService service, QueryExpression qe, int? maxCount, int? pageSize, bool async ) : IEnumerable
GetEntitiesWithCookie ( IOrganizationService service, QueryExpression qe ) : EntitiesWithCookie
UpdatePageCount ( PagingInfo page, int &count, int? maxCount ) : void

메소드 상세

GetAllEntities() 공개 정적인 메소드

Gets all entities.
public static GetAllEntities ( IOrganizationService service, QueryExpression qe, int? maxCount = null, int? pageSize = null, bool async = false ) : IEnumerable
service IOrganizationService The service.
qe QueryExpression The qe.
maxCount int? The maximum count.
pageSize int? Size of the page.
async bool if set to true the Service will retrieve the next batch asynchrounsly after starting to return the first batch. This means that any looping that is performed with this call, can not use the same organization service or else there will be a multi-threading issue.
리턴 IEnumerable