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
3535 [ Test ]
3636 public async Task Can_execute_stored_procedure_using_SqlList_with_out_params ( )
3737 {
38+ if ( Dialect != Dialect . SqlServer ) return ;
39+
3840 using ( var db = OpenDbConnection ( ) )
3941 {
4042 db . DropAndCreateTable < LetterFrequency > ( ) ;
@@ -61,6 +63,8 @@ public async Task Can_execute_stored_procedure_using_SqlList_with_out_params()
6163 [ Test ]
6264 public async Task Can_execute_stored_procedure_using_SqlProc_with_out_params ( )
6365 {
66+ if ( Dialect != Dialect . SqlServer ) return ;
67+
6468 using ( var db = OpenDbConnection ( ) )
6569 {
6670 db . DropAndCreateTable < LetterFrequency > ( ) ;
@@ -84,8 +88,11 @@ public async Task Can_execute_stored_procedure_using_SqlProc_with_out_params()
8488 }
8589
8690 [ Test ]
91+ [ NUnit . Framework . Ignore ( "Requires out-of-band SP" ) ]
8792 public async Task Can_execute_stored_proceduce_returning_scalars ( )
8893 {
94+ if ( Dialect != Dialect . SqlServer ) return ;
95+
8996 using ( var db = OpenDbConnection ( ) )
9097 {
9198 using ( var cmd = db . SqlProc (
You can’t perform that action at this time.
0 commit comments