Commit 2f4119f0 authored by Marc Gravell's avatar Marc Gravell

Merge pull request #219 from twhitbeck/patch-1

Tiny typo
parents 2cc28282 0fe24ba3
...@@ -316,7 +316,7 @@ p.Add("@a", 11); ...@@ -316,7 +316,7 @@ p.Add("@a", 11);
p.Add("@b", dbType: DbType.Int32, direction: ParameterDirection.Output); p.Add("@b", dbType: DbType.Int32, direction: ParameterDirection.Output);
p.Add("@c", dbType: DbType.Int32, direction: ParameterDirection.ReturnValue); p.Add("@c", dbType: DbType.Int32, direction: ParameterDirection.ReturnValue);
cnn.Execute("spMagicProc", p, commandType: commandType.StoredProcedure); cnn.Execute("spMagicProc", p, commandType: CommandType.StoredProcedure);
int b = p.Get<int>("@b"); int b = p.Get<int>("@b");
int c = p.Get<int>("@c"); int c = p.Get<int>("@c");
......
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