Skip to content
Open
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
6 changes: 3 additions & 3 deletions src/SQLite.Net/SQLiteCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@ public class SQLiteCommand

[NotNull] private readonly List<Binding> _bindings;

private readonly SQLiteConnection _conn;
private readonly ISQLitePlatform _sqlitePlatform;
protected readonly SQLiteConnection _conn;
protected readonly ISQLitePlatform _sqlitePlatform;

internal SQLiteCommand(ISQLitePlatform platformImplementation, SQLiteConnection conn)
internal protected SQLiteCommand(ISQLitePlatform platformImplementation, SQLiteConnection conn)
{
_sqlitePlatform = platformImplementation;
_conn = conn;
Expand Down