Exemple #1
0
        /// <summary>
        /// Process the current request and returns result using the target database.
        /// </summary>
        /// <param name="connection">Connection string to the target database where results will be fetched.</param>
        /// <returns>Async task that will stream results.</returns>
        public static Task Process(this RequestHandler rh, string connection)
        {
            var pipeAdapter = new TSqlCommandAdapter(new SqlConnection(connection));

            return(rh.Process(pipeAdapter));
        }
Exemple #2
0
        /// <summary>
        /// Returns results from <code>RequestHandler</code> as single string.
        /// </summary>
        /// <param name="connection">Connection string to the target database where results will be fetched.</param>
        /// <returns>Async tatsk with ActionResult contianing the results.</returns>
        public static Task <IActionResult> GetResultString(this RequestHandler rh, string connection)
        {
            var pipeAdapter = new TSqlCommandAdapter(new SqlConnection(connection));

            return(rh.GetResult(pipeAdapter));
        }
Exemple #3
0
        public static Task Process(this RequestHandler rh, SqlConnection conn)
        {
            var pipe = new TSqlCommandAdapter(conn);

            return(rh.Process(pipe));
        }