Skip to content

Commit

Permalink
Merge pull request #33 from wast/patch-1
Browse files Browse the repository at this point in the history
Typo fix
  • Loading branch information
epaulsen committed Jul 18, 2019
2 parents 5451d89 + 994f583 commit ecfcfd2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -50,7 +50,7 @@ public void RunStoredProcedureWithArrayAsParameters(IEnumerable<long> idvalues)
{
var parameters = new OracleDynamicParameters();
var idArray = idvalues.ToArray();
parameters.ArrrayBindCount = idArray.Count;
parameters.ArrayBindCount = idArray.Count;

parameters.Add("ArrayParameter", idArray, OracleMappingType.Int64, ParameterDirection.Input);
connection.Execute("Schema.Package.MyStoredProcedure", parameters, commandType: CommandType.StoredProcedure);
Expand All @@ -64,4 +64,4 @@ Example:

```powershell
build.ps1 -Task Compile
```
```

0 comments on commit ecfcfd2

Please sign in to comment.