Skip to content

Commit

Permalink
Update query-future.md
Browse files Browse the repository at this point in the history
  • Loading branch information
JonathanMagnan authored Jan 12, 2019
1 parent 83bb05e commit f38fedc
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions docs/pages/features/query-future.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ FiddleHelper.WriteTable("Active Customers", ActiveCustomers);

| Name | Description | Default | Example |
| :--- | :---------- | :-----: | :------ |
| `IsEnabled` | Gets or sets if the `QueryFuture` feature is enabled. | true | [Coming soon](#) |
| `IsEnabled` | Gets or sets if the `QueryFuture` feature is enabled. | true | [Try it](https://dotnetfiddle.net/n6VcfE) |

### QueryFutureEnumerable<TEntityType>

Expand All @@ -42,22 +42,22 @@ The `QueryFutureEnumerable<TEntityType>` inherit from the `IEnumerable<T>` inter

| Name | Description | Example |
| :--- | :---------- | :------ |
| `ToArrayAsync()` | Converts this object to an array asynchronous. | [Coming soon](#) |
| `ToArrayAsync(CancellationToken cancellationToken)` | Converts this object to an array asynchronous. | [Coming soon](#) |
| `ToListAsync()` | Converts this object to a list asynchronous. | [Coming soon](#) |
| `ToListAsync(CancellationToken cancellationToken)` | Converts this object to a list asynchronous. | [Coming soon](#) |
| `ToArrayAsync()` | Converts this object to an array asynchronous. | |
| `ToArrayAsync(CancellationToken cancellationToken)` | Converts this object to an array asynchronous. | |
| `ToListAsync()` | Converts this object to a list asynchronous. | |
| `ToListAsync(CancellationToken cancellationToken)` | Converts this object to a list asynchronous. | |

### QueryFutureValue<TResult>

###### Properties

| Name | Description | Default | Example |
| :--- | :---------- | :-----: | :------ |
| `Value` | Gets the value of the future query. | null | [Coming soon](#) |
| `Value` | Gets the value of the future query. | null | [Try it](https://dotnetfiddle.net/ObIY3v) |

###### Methods

| Name | Description | Example |
| :--- | :---------- | :------ |
| `ValueAsync()` | Gets the value of the future query. | [Coming soon](#) |
| `ValueAsync(CancellationToken cancellationToken)` | Gets the value of the future query. | [Coming soon](#) |
| `ValueAsync()` | Gets the value of the future query. | |
| `ValueAsync(CancellationToken cancellationToken)` | Gets the value of the future query. | |

0 comments on commit f38fedc

Please sign in to comment.