Created
September 19, 2019 12:15
-
-
Save mikebeaton/b6b36fdb964228f3a95ca01a852931c2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var result = db.ExecuteProcedure("my_add_proc", inParams: new { a = 1, b = 2}, outParams: new { c = (int?)null }); | |
Console.WriteLine(result.c); // 3 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment