I have a stored procedure that either updates existing or inserts single record (I use MERGE TOP(1) ..) using MERGE statement in SQL Server 2008 R2. I use MERGE's OUTPUT clause to emit the value of $action to see what action was taken (INSERT, UPDATE, DELETE, 'blank').
However, when I call my SP from C# program, I am forced to execute a reader (DbCommand.ExecuteReader()) and loop through it once to get the $action value...
My question is, can the OUTPUT $action somehow be attached to SP output parameter which will enable me to do just DbCmmand.ExecuteNonQuery() and examine the output parameter? This will save me from having to instantiate the reader...
BTW, I am doing this call in a loop, so not having to instantiate the reader would be a bit faster (I hope)