I will like to know if is possible to see what the SQL statement actully looks after the parameters have been parsed in to the SQL string. For example given the following code:
const string SQL = @"
SELECT *
FROM V_PROVIDER_WAGE_OVER_REVENUE
WHERE SITE_ID = :SITE_ID
AND VENDOR_ID = :VENDOR_ID
AND date_paid >= :DATE_FROM
AND date_paid <= :DATE_TO;";
conn.Query<ProviderWageOverRevenueModel>(SQL, new {
VENDOR_ID = vendorId,
SITE_ID = siteId,
DATE_FROM = dateFrom,
DATE_TO = dateTo
}).ToList();
I will like to know if at some point (maybe inside Dapper source?) can I see the something like:
SELECT *
FROM V_PROVIDER_WAGE_OVER_REVENUE
WHERE SITE_ID = 199
AND VENDOR_ID = 17
AND date_paid >= '01/01/2014'
AND date_paid <= '20/11/2014';
Edit
I was assuming that the parameters placeholders will be replaced with the values, however according after looking closely at the source of Dapper I realize that its just relaying on a iDbCommand to executed the query, so after looking at this question It is possible to see executed statement inside .Net?
I try this:
string query = cmd.CommandText;
foreach (DbParameter p in cmd.Parameters)
{
query = query.Replace(p.ParameterName, p.Value.ToString());
}
however the result is not seem to be like I hope:
SELECT *
FROM V_PROVIDER_WAGE_OVER_REVENUE
WHERE 23411127316 = :23411127316
AND 23411076816 = :23411076816
AND date_paid >= :1/07/2014 10:11:34 PM
AND date_paid <= :12/12/2014 12:00:00 AM;