This repository was archived by the owner on Dec 24, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed
tests/ServiceStack.OrmLiteV45.Tests Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -35,6 +35,8 @@ @pTotal int OUT
35
35
[ Test ]
36
36
public async Task Can_execute_stored_procedure_using_SqlList_with_out_params ( )
37
37
{
38
+ if ( Dialect != Dialect . SqlServer ) return ;
39
+
38
40
using ( var db = OpenDbConnection ( ) )
39
41
{
40
42
db . DropAndCreateTable < LetterFrequency > ( ) ;
@@ -61,6 +63,8 @@ public async Task Can_execute_stored_procedure_using_SqlList_with_out_params()
61
63
[ Test ]
62
64
public async Task Can_execute_stored_procedure_using_SqlProc_with_out_params ( )
63
65
{
66
+ if ( Dialect != Dialect . SqlServer ) return ;
67
+
64
68
using ( var db = OpenDbConnection ( ) )
65
69
{
66
70
db . DropAndCreateTable < LetterFrequency > ( ) ;
@@ -84,8 +88,11 @@ public async Task Can_execute_stored_procedure_using_SqlProc_with_out_params()
84
88
}
85
89
86
90
[ Test ]
91
+ [ NUnit . Framework . Ignore ( "Requires out-of-band SP" ) ]
87
92
public async Task Can_execute_stored_proceduce_returning_scalars ( )
88
93
{
94
+ if ( Dialect != Dialect . SqlServer ) return ;
95
+
89
96
using ( var db = OpenDbConnection ( ) )
90
97
{
91
98
using ( var cmd = db . SqlProc (
You can’t perform that action at this time.
0 commit comments