Executes the query, converting the first record to the specified type.
public T QueryFirstOrDefault<T>()
Returns default(T)
if no records are returned.
Executes the query, converting the first record to the specified type with the specified delegate.
public T QueryFirstOrDefault<T>(Func<IDataRecord, T> map)
Returns default(T)
if no records are returned.