Skip to content

Commit

Permalink
Fix link to docs.
Browse files Browse the repository at this point in the history
  • Loading branch information
ejball committed Apr 22, 2017
1 parent 1f216ba commit aa2d52d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Faithlife.Utility.Dapper/BulkInsertUtility.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ namespace Faithlife.Utility.Dapper
/// <summary>
/// Methods for bulk insert with Dapper.
/// </summary>
/// <remarks>https://github.com/Faithlife/DapperUtility/blob/master/docs/BulkInsert.md</remarks>
/// <remarks>https://faithlife.github.io/DapperUtility/BulkInsert</remarks>
public static class BulkInsertUtility
{
/// <summary>
Expand Down Expand Up @@ -209,7 +209,7 @@ private static Func<T, object> TryCreateGetter(PropertyInfo property)
return null;

var dynamicGetMethod = new DynamicMethod(name: $"_Get{property.Name}_",
returnType: typeof(T), parameterTypes: new Type[] { typeof(object) }, owner: ownerType);
returnType: typeof(T), parameterTypes: new[] { typeof(object) }, owner: ownerType);
var generator = dynamicGetMethod.GetILGenerator();
generator.DeclareLocal(typeof(object));
generator.Emit(OpCodes.Ldarg_0);
Expand Down

0 comments on commit aa2d52d

Please sign in to comment.