Clean up SqliteItemRepository

This commit is contained in:
Bond_009
2020-04-03 20:59:38 +02:00
parent a37b69a493
commit 8e7b15285e
4 changed files with 139 additions and 270 deletions

View File

@@ -287,7 +287,7 @@ namespace Emby.Server.Implementations.Data
}
}
public static void TryBind(this IStatement statement, string name, byte[] value)
public static void TryBind(this IStatement statement, string name, ReadOnlySpan<byte> value)
{
if (statement.BindParameters.TryGetValue(name, out IBindParameter bindParam))
{