< Summary - Jellyfin

Information
Class: Jellyfin.Database.Providers.Sqlite.DoNotUseReturningClauseConvention
Assembly: Jellyfin.Database.Providers.Sqlite
File(s): /srv/git/jellyfin/src/Jellyfin.Database/Jellyfin.Database.Providers.Sqlite/DoNotUseReturningClauseConvention.cs
Line coverage
100%
Covered lines: 3
Uncovered lines: 0
Coverable lines: 3
Total lines: 20
Line coverage: 100%
Branch coverage
100%
Covered branches: 2
Total branches: 2
Branch coverage: 100%
Method coverage

Feature is only available for sponsors

Upgrade to PRO version

Coverage history

Coverage history 0 25 50 75 100

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity Line coverage
ProcessModelFinalizing(...)100%22100%

File(s)

/srv/git/jellyfin/src/Jellyfin.Database/Jellyfin.Database.Providers.Sqlite/DoNotUseReturningClauseConvention.cs

#LineLine coverage
 1using System;
 2using Microsoft.EntityFrameworkCore;
 3using Microsoft.EntityFrameworkCore.Metadata.Builders;
 4using Microsoft.EntityFrameworkCore.Metadata.Conventions;
 5
 6namespace Jellyfin.Database.Providers.Sqlite;
 7
 8internal class DoNotUseReturningClauseConvention : IModelFinalizingConvention
 9{
 10    /// <inheritdoc/>
 11    public void ProcessModelFinalizing(
 12        IConventionModelBuilder modelBuilder,
 13        IConventionContext<IConventionModelBuilder> context)
 14    {
 12015        foreach (var entityType in modelBuilder.Metadata.GetEntityTypes())
 16        {
 5817            entityType.UseSqlReturningClause(false);
 18        }
 219    }
 20}