Replicated changes made from #13492
parent
05f5d19ff4
commit
a6b4d124d7
@ -0,0 +1,20 @@
|
||||
using System;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using Microsoft.EntityFrameworkCore.Metadata.Builders;
|
||||
using Microsoft.EntityFrameworkCore.Metadata.Conventions;
|
||||
|
||||
namespace Jellyfin.Database.Providers.SqLite;
|
||||
|
||||
internal class DoNotUseReturningClauseConvention : IModelFinalizingConvention
|
||||
{
|
||||
/// <inheritdoc/>
|
||||
public void ProcessModelFinalizing(
|
||||
IConventionModelBuilder modelBuilder,
|
||||
IConventionContext<IConventionModelBuilder> context)
|
||||
{
|
||||
foreach (var entityType in modelBuilder.Metadata.GetEntityTypes())
|
||||
{
|
||||
entityType.UseSqlReturningClause(false);
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in new issue