diff --git a/src/SQLite.Net/SQLiteCommand.cs b/src/SQLite.Net/SQLiteCommand.cs index 6259f14f4..492296888 100755 --- a/src/SQLite.Net/SQLiteCommand.cs +++ b/src/SQLite.Net/SQLiteCommand.cs @@ -36,10 +36,10 @@ public class SQLiteCommand [NotNull] private readonly List _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;