@@ -534,7 +534,7 @@ public void GroupByComputedValue()
534
534
{
535
535
if ( Dialect is FirebirdDialect )
536
536
Assert . Ignore ( "Firebird does not support complex group by expressions" ) ;
537
- if ( sessions . ConnectionProvider . Driver is OdbcDriver )
537
+ if ( sessions . ConnectionProvider . Driver . IsOdbcDriver ( ) )
538
538
Assert . Ignore ( "SQL Server seems unable to match complex group by and select list arguments when running over ODBC." ) ;
539
539
if ( Dialect is MsSqlCeDialect )
540
540
Assert . Ignore ( "SQL Server CE does not support complex group by expressions." ) ;
@@ -548,7 +548,7 @@ public void GroupByComputedValueInAnonymousType()
548
548
{
549
549
if ( Dialect is FirebirdDialect )
550
550
Assert . Ignore ( "Firebird does not support complex group by expressions" ) ;
551
- if ( sessions . ConnectionProvider . Driver is OdbcDriver )
551
+ if ( sessions . ConnectionProvider . Driver . IsOdbcDriver ( ) )
552
552
Assert . Ignore ( "SQL Server seems unable to match complex group by and select list arguments when running over ODBC." ) ;
553
553
if ( Dialect is MsSqlCeDialect )
554
554
Assert . Ignore ( "SQL Server CE does not support complex group by expressions." ) ;
@@ -562,7 +562,7 @@ public void GroupByComputedValueInObjectArray()
562
562
{
563
563
if ( Dialect is FirebirdDialect )
564
564
Assert . Ignore ( "Firebird does not support complex group by expressions" ) ;
565
- if ( sessions . ConnectionProvider . Driver is OdbcDriver )
565
+ if ( sessions . ConnectionProvider . Driver . IsOdbcDriver ( ) )
566
566
Assert . Ignore ( "SQL Server seems unable to match complex group by and select list arguments when running over ODBC." ) ;
567
567
if ( Dialect is MsSqlCeDialect )
568
568
Assert . Ignore ( "SQL Server CE does not support complex group by expressions." ) ;
@@ -693,7 +693,7 @@ public void GroupByComputedValueWithJoinOnObject()
693
693
{
694
694
if ( Dialect is FirebirdDialect )
695
695
Assert . Ignore ( "Firebird does not support complex group by expressions" ) ;
696
- if ( sessions . ConnectionProvider . Driver is OdbcDriver )
696
+ if ( sessions . ConnectionProvider . Driver . IsOdbcDriver ( ) )
697
697
Assert . Ignore ( "SQL Server seems unable to match complex group by and select list arguments when running over ODBC." ) ;
698
698
if ( Dialect is MsSqlCeDialect )
699
699
Assert . Ignore ( "SQL Server CE does not support complex group by expressions." ) ;
@@ -707,7 +707,7 @@ public void GroupByComputedValueWithJoinOnId()
707
707
{
708
708
if ( Dialect is FirebirdDialect )
709
709
Assert . Ignore ( "Firebird does not support complex group by expressions" ) ;
710
- if ( sessions . ConnectionProvider . Driver is OdbcDriver )
710
+ if ( sessions . ConnectionProvider . Driver . IsOdbcDriver ( ) )
711
711
Assert . Ignore ( "SQL Server seems unable to match complex group by and select list arguments when running over ODBC." ) ;
712
712
if ( Dialect is MsSqlCeDialect )
713
713
Assert . Ignore ( "SQL Server CE does not support complex group by expressions." ) ;
@@ -721,7 +721,7 @@ public void GroupByComputedValueInAnonymousTypeWithJoinOnObject()
721
721
{
722
722
if ( Dialect is FirebirdDialect )
723
723
Assert . Ignore ( "Firebird does not support complex group by expressions" ) ;
724
- if ( sessions . ConnectionProvider . Driver is OdbcDriver )
724
+ if ( sessions . ConnectionProvider . Driver . IsOdbcDriver ( ) )
725
725
Assert . Ignore ( "SQL Server seems unable to match complex group by and select list arguments when running over ODBC." ) ;
726
726
if ( Dialect is MsSqlCeDialect )
727
727
Assert . Ignore ( "SQL Server CE does not support complex group by expressions." ) ;
@@ -735,7 +735,7 @@ public void GroupByComputedValueInAnonymousTypeWithJoinOnId()
735
735
{
736
736
if ( Dialect is FirebirdDialect )
737
737
Assert . Ignore ( "Firebird does not support complex group by expressions" ) ;
738
- if ( sessions . ConnectionProvider . Driver is OdbcDriver )
738
+ if ( sessions . ConnectionProvider . Driver . IsOdbcDriver ( ) )
739
739
Assert . Ignore ( "SQL Server seems unable to match complex group by and select list arguments when running over ODBC." ) ;
740
740
if ( Dialect is MsSqlCeDialect )
741
741
Assert . Ignore ( "SQL Server CE does not support complex group by expressions." ) ;
@@ -749,7 +749,7 @@ public void GroupByComputedValueInObjectArrayWithJoinOnObject()
749
749
{
750
750
if ( Dialect is FirebirdDialect )
751
751
Assert . Ignore ( "Firebird does not support complex group by expressions" ) ;
752
- if ( sessions . ConnectionProvider . Driver is OdbcDriver )
752
+ if ( sessions . ConnectionProvider . Driver . IsOdbcDriver ( ) )
753
753
Assert . Ignore ( "SQL Server seems unable to match complex group by and select list arguments when running over ODBC." ) ;
754
754
if ( Dialect is MsSqlCeDialect )
755
755
Assert . Ignore ( "SQL Server CE does not support complex group by expressions." ) ;
@@ -763,7 +763,7 @@ public void GroupByComputedValueInObjectArrayWithJoinOnId()
763
763
{
764
764
if ( Dialect is FirebirdDialect )
765
765
Assert . Ignore ( "Firebird does not support complex group by expressions" ) ;
766
- if ( sessions . ConnectionProvider . Driver is OdbcDriver )
766
+ if ( sessions . ConnectionProvider . Driver . IsOdbcDriver ( ) )
767
767
Assert . Ignore ( "SQL Server seems unable to match complex group by and select list arguments when running over ODBC." ) ;
768
768
if ( Dialect is MsSqlCeDialect )
769
769
Assert . Ignore ( "SQL Server CE does not support complex group by expressions." ) ;
@@ -777,7 +777,7 @@ public void GroupByComputedValueInObjectArrayWithJoinInRightSideOfCase()
777
777
{
778
778
if ( Dialect is FirebirdDialect )
779
779
Assert . Ignore ( "Firebird does not support complex group by expressions" ) ;
780
- if ( sessions . ConnectionProvider . Driver is OdbcDriver )
780
+ if ( sessions . ConnectionProvider . Driver . IsOdbcDriver ( ) )
781
781
Assert . Ignore ( "SQL Server seems unable to match complex group by and select list arguments when running over ODBC." ) ;
782
782
if ( Dialect is MsSqlCeDialect )
783
783
Assert . Ignore ( "SQL Server CE does not support complex group by expressions." ) ;
@@ -791,7 +791,7 @@ public void GroupByComputedValueFromNestedArraySelect()
791
791
{
792
792
if ( Dialect is FirebirdDialect )
793
793
Assert . Ignore ( "Firebird does not support complex group by expressions" ) ;
794
- if ( sessions . ConnectionProvider . Driver is OdbcDriver )
794
+ if ( sessions . ConnectionProvider . Driver . IsOdbcDriver ( ) )
795
795
Assert . Ignore ( "SQL Server seems unable to match complex group by and select list arguments when running over ODBC." ) ;
796
796
if ( Dialect is MsSqlCeDialect )
797
797
Assert . Ignore ( "SQL Server CE does not support complex group by expressions." ) ;
@@ -805,7 +805,7 @@ public void GroupByComputedValueFromNestedObjectSelect()
805
805
{
806
806
if ( Dialect is FirebirdDialect )
807
807
Assert . Ignore ( "Firebird does not support complex group by expressions" ) ;
808
- if ( sessions . ConnectionProvider . Driver is OdbcDriver )
808
+ if ( sessions . ConnectionProvider . Driver . IsOdbcDriver ( ) )
809
809
Assert . Ignore ( "SQL Server seems unable to match complex group by and select list arguments when running over ODBC." ) ;
810
810
if ( Dialect is MsSqlCeDialect )
811
811
Assert . Ignore ( "SQL Server CE does not support complex group by expressions." ) ;
0 commit comments