Back to Devexpress

MongoDBDataSource.FillAsync Method

corelibraries-devexpress-dot-dataaccess-dot-mongodb-dot-mongodbdatasource-dot-fillasync.md

latest4.1 KB
Original Source

MongoDBDataSource.FillAsync Method

NameParametersDescription
FillAsync()noneAsynchronously loads data from a MongoDB instance to MongoDBDataSource.
FillAsync(IEnumerable<IParameter>, String[], CancellationToken)sourceParameters, queriesToFill, cancellationTokenAsynchronously loads data from a MongoDB instance to MongoDBDataSource. Allows you to specify external parameters that you can reference in a query’s filter string, the queries that should be executed in order to load the data, and a cancellation token that you can use to cancel the data loading task.
FillAsync(IEnumerable<IParameter>, String[])sourceParameters, queriesToFillAsynchronously loads data from a MongoDB instance to MongoDBDataSource. Allows you to specify external parameters that you can reference in a query’s filter string and the queries that should be executed in order to load the data.
FillAsync(IEnumerable<IParameter>, CancellationToken)sourceParameters, cancellationTokenAsynchronously loads data from a MongoDB instance to MongoDBDataSource. Allows you to specify external parameters that you can reference in a query’s filter string and a cancellation token that you can use to cancel the data loading task.
FillAsync(IEnumerable<IParameter>)sourceParametersAsynchronously loads data from a MongoDB instance to MongoDBDataSource. Allows you to specify external parameters that you can reference in a query’s filter string.
FillAsync(String[], CancellationToken)queriesToFill, cancellationTokenAsynchronously loads data from a MongoDB instance to MongoDBDataSource. Allows you to specify the queries that should be executed in order to load the data and a cancellation token that you can use to cancel the data loading task.
FillAsync(String[])queriesToFillAsynchronously loads data from a MongoDB instance to MongoDBDataSource. Allows you to specify the queries that should be executed in order to load the data.
FillAsync(CancellationToken)cancellationTokenAsynchronously loads data from a MongoDB instance to MongoDBDataSource. Allows you to specify a cancellation token that you can use to cancel the data loading task.