Skip to content

Commit

Permalink
v3.23.2 (#111)
Browse files Browse the repository at this point in the history
- *Fixed:* `DatabaseExtendedExtensions.DeleteWithResultAsync` corrected to return a `Task<Result>`.`
  • Loading branch information
chullybun authored Jul 30, 2024
1 parent 6445e66 commit c374a00
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

Represents the **NuGet** versions.

## v3.23.2
- *Fixed:* `DatabaseExtendedExtensions.DeleteWithResultAsync` corrected to return a `Task<Result>`.`

## v3.23.1
- *Fixed:* Updated all dependencies to latest versions (specifically _UnitTestEx_).

Expand Down
2 changes: 1 addition & 1 deletion Common.targets
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project>
<PropertyGroup>
<Version>3.23.1</Version>
<Version>3.23.2</Version>
<LangVersion>preview</LangVersion>
<Authors>Avanade</Authors>
<Company>Avanade</Company>
Expand Down
2 changes: 1 addition & 1 deletion src/CoreEx.Database/Extended/DatabaseExtendedExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -405,7 +405,7 @@ public static async Task<Result> DeleteWithResultAsync(this DatabaseCommand comm
/// <param name="mapper">The <see cref="IDatabaseMapper{T}"/>.</param>
/// <param name="key">The <see cref="CompositeKey"/>.</param>
/// <param name="cancellationToken">The <see cref="CancellationToken"/>.</param>
public static Task DeleteWithResultAsync(this DatabaseCommand command, IDatabaseMapper mapper, CompositeKey key, CancellationToken cancellationToken = default)
public static Task<Result> DeleteWithResultAsync(this DatabaseCommand command, IDatabaseMapper mapper, CompositeKey key, CancellationToken cancellationToken = default)
=> DeleteWithResultAsync(command, new DatabaseArgs(command.Database.DbArgs, mapper), key, cancellationToken);

#endregion
Expand Down

0 comments on commit c374a00

Please sign in to comment.