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

Update DbDataSource.cs #112609

Merged
merged 1 commit into from
Feb 18, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -561,10 +561,10 @@ public override async ValueTask DisposeAsync()
// provide their own connection-less implementation anyway (i.e. interacting with the originating
// DbDataSource), so they'd have to override this in any case.
public override void Prepare()
=> throw ExceptionBuilder.NotSupportedOnDataSourceCommand();
=> throw ExceptionBuilder.NotSupportedOnDataSourceBatch();

public override Task PrepareAsync(CancellationToken cancellationToken = default)
=> Task.FromException(ExceptionBuilder.NotSupportedOnDataSourceCommand());
=> Task.FromException(ExceptionBuilder.NotSupportedOnDataSourceBatch());

// The below are incompatible with batches executed directly against DbDataSource, since no DbConnection
// is involved at the user API level and the DbBatchWrapper owns the DbConnection.
Expand Down
Loading