Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DOCUMENTATION: Update v2.10.3 FromTask #293

Merged
merged 2 commits into from
Aug 5, 2024

Conversation

glhays
Copy link
Collaborator

@glhays glhays commented Aug 3, 2024

Closes: #292

@glhays glhays requested a review from hassanhabib August 3, 2024 20:13
@glhays glhays added the DOCUMENTATION Improvements or additions to documentation label Aug 3, 2024
@glhays glhays merged commit 52bf7a4 into master Aug 5, 2024
3 checks passed
@@ -254,8 +253,7 @@ namespace OtripleS.Web.Api.Brokers.Storages
return @object;
}

private ValueTask<IQueryable<T>> SelectAllAsync<T>() where T : class =>
await ValueTask.FromResult(this.Set<T>());
private ValueTask<IQueryable<T>> SelectAllAsync<T>() where T : class => this.Set<T>();
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@glhays you must add async here. If you don't add async it won't compile.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
DOCUMENTATION Improvements or additions to documentation
Projects
None yet
Development

Successfully merging this pull request may close these issues.

DOCUMENTATION: V2.10.3 Update FromTask
3 participants