diff --git a/src/Faithlife.Utility.Dapper/BulkInsertUtility.cs b/src/Faithlife.Utility.Dapper/BulkInsertUtility.cs index 841ff21..2ac445a 100644 --- a/src/Faithlife.Utility.Dapper/BulkInsertUtility.cs +++ b/src/Faithlife.Utility.Dapper/BulkInsertUtility.cs @@ -16,7 +16,7 @@ namespace Faithlife.Utility.Dapper /// /// Methods for bulk insert with Dapper. /// - /// https://github.com/Faithlife/DapperUtility/blob/master/docs/BulkInsert.md + /// https://faithlife.github.io/DapperUtility/BulkInsert public static class BulkInsertUtility { /// @@ -209,7 +209,7 @@ private static Func 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);