Exemplo n.º 1
0
        internal static async Task <DbDataReader> CreateAsync(SQLiteCommand command, CommandBehavior behavior, CancellationToken cancellationToken)
        {
            DbDataReader dataReader = new SQLiteDataReader(command, behavior);
            await dataReader.NextResultAsync(cancellationToken);

            return(dataReader);
        }