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 ...@@ -19,7 +19,7 @@ private static void SetAllowedCommandBehaviors(CommandBehavior behavior, bool en
else AllowedCommandBehaviors &= ~behavior; else AllowedCommandBehaviors &= ~behavior;
} }
/// <summary> /// <summary>
/// Gets or sets whether dapper should use the CommandBehavior.SingleResult optimization /// Gets or sets whether Dapper should use the CommandBehavior.SingleResult optimization
/// </summary> /// </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> /// <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 public static bool UseSingleResultOptimization
...@@ -28,7 +28,7 @@ public static bool UseSingleResultOptimization ...@@ -28,7 +28,7 @@ public static bool UseSingleResultOptimization
set { SetAllowedCommandBehaviors(CommandBehavior.SingleResult, value); } set { SetAllowedCommandBehaviors(CommandBehavior.SingleResult, value); }
} }
/// <summary> /// <summary>
/// Gets or sets whether dapper should use the CommandBehavior.SingleRow optimization /// Gets or sets whether Dapper should use the CommandBehavior.SingleRow optimization
/// </summary> /// </summary>
/// <remarks>Note that on some DB providers this optimization can have adverse performance impact</remarks> /// <remarks>Note that on some DB providers this optimization can have adverse performance impact</remarks>
public static bool UseSingleRowOptimization public static bool UseSingleRowOptimization
......
...@@ -122,7 +122,7 @@ private static void PurgeQueryCacheByType(Type type) ...@@ -122,7 +122,7 @@ private static void PurgeQueryCacheByType(Type type)
} }
/// <summary> /// <summary>
/// Return a count of all the cached queries by dapper /// Return a count of all the cached queries by Dapper
/// </summary> /// </summary>
/// <returns></returns> /// <returns></returns>
public static int GetCachedSQLCount() public static int GetCachedSQLCount()
...@@ -131,7 +131,7 @@ public static int GetCachedSQLCount() ...@@ -131,7 +131,7 @@ public static int GetCachedSQLCount()
} }
/// <summary> /// <summary>
/// Return a list of all the queries cached by dapper /// Return a list of all the queries cached by Dapper
/// </summary> /// </summary>
/// <param name="ignoreHitCountAbove"></param> /// <param name="ignoreHitCountAbove"></param>
/// <returns></returns> /// <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