Commit 5f3d178d authored by Marc Gravell's avatar Marc Gravell

Capitalization

parent 3cc7db64
......@@ -19,7 +19,7 @@ private static void SetAllowedCommandBehaviors(CommandBehavior behavior, bool en
else AllowedCommandBehaviors &= ~behavior;
}
/// <summary>
/// Gets or sets whether dapper should use the CommandBehavior.SingleResult optimization
/// Gets or sets whether Dapper should use the CommandBehavior.SingleResult optimization
/// </summary>
/// <remarks>Note that a consequence of enabling this option is that errors that happen <b>after</b> the first select may not be reported</remarks>
public static bool UseSingleResultOptimization
......@@ -28,7 +28,7 @@ public static bool UseSingleResultOptimization
set { SetAllowedCommandBehaviors(CommandBehavior.SingleResult, value); }
}
/// <summary>
/// Gets or sets whether dapper should use the CommandBehavior.SingleRow optimization
/// Gets or sets whether Dapper should use the CommandBehavior.SingleRow optimization
/// </summary>
/// <remarks>Note that on some DB providers this optimization can have adverse performance impact</remarks>
public static bool UseSingleRowOptimization
......
......@@ -122,7 +122,7 @@ private static void PurgeQueryCacheByType(Type type)
}
/// <summary>
/// Return a count of all the cached queries by dapper
/// Return a count of all the cached queries by Dapper
/// </summary>
/// <returns></returns>
public static int GetCachedSQLCount()
......@@ -131,7 +131,7 @@ public static int GetCachedSQLCount()
}
/// <summary>
/// Return a list of all the queries cached by dapper
/// Return a list of all the queries cached by Dapper
/// </summary>
/// <param name="ignoreHitCountAbove"></param>
/// <returns></returns>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment