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

Sync methods for IEfCoreScope #17948

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
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
23 changes: 23 additions & 0 deletions src/Umbraco.Cms.Persistence.EFCore/Scoping/EFCoreScope.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System.Data.Common;

Check warning on line 1 in src/Umbraco.Cms.Persistence.EFCore/Scoping/EFCoreScope.cs

View check run for this annotation

CodeScene Delta Analysis / CodeScene Cloud Delta Analysis (contrib)

❌ Getting worse: Code Duplication

introduced similar code in: ExecuteWithContext,ExecuteWithContextAsync. Avoid duplicated, aka copy-pasted, code inside the module. More duplication lowers the code health.
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Storage;
using Microsoft.Extensions.Logging;
Expand Down Expand Up @@ -102,13 +102,36 @@
return await method(_dbContext!);
}

public T ExecuteWithContext<T>(Func<TDbContext, T> method)
{
if (_disposed)
{
throw new InvalidOperationException(
"The scope has been disposed, therefore the database is not available.");
}

if (_dbContext is null)
{
InitializeDatabase();
}

return method(_dbContext!);
}

public async Task ExecuteWithContextAsync<T>(Func<TDbContext, Task> method) =>
await ExecuteWithContextAsync(async db =>
{
await method(db);
return true; // Do nothing
});

public void ExecuteWithContext<T>(Action<TDbContext> method) =>
ExecuteWithContext(db =>
{
method(db);
return true; // Do nothing
});

public void Reset() => Completed = null;

public override void Dispose()
Expand Down
16 changes: 16 additions & 0 deletions src/Umbraco.Cms.Persistence.EFCore/Scoping/IEFCoreScope.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,14 @@ public interface IEfCoreScope<TDbContext> : ICoreScope
/// <returns></returns>
Task<T> ExecuteWithContextAsync<T>(Func<TDbContext, Task<T>> method);

/// <summary>
/// Executes the given function on the database.
/// </summary>
/// <param name="method">Function to execute.</param>
/// <typeparam name="T">Type to use and return.</typeparam>
/// <returns></returns>
T ExecuteWithContext<T>(Func<TDbContext, T> method);

public IScopeContext? ScopeContext { get; set; }

/// <summary>
Expand All @@ -23,6 +31,14 @@ public interface IEfCoreScope<TDbContext> : ICoreScope
/// <returns></returns>
Task ExecuteWithContextAsync<T>(Func<TDbContext, Task> method);

/// <summary>
/// Executes the given function on the database.
/// </summary>
/// <param name="method">Function to execute.</param>
/// <typeparam name="T">Type to use and return.</typeparam>
/// <returns></returns>
void ExecuteWithContext<T>(Action<TDbContext> method);

/// <summary>
/// Gets the scope notification publisher
/// </summary>
Expand Down
Loading