File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed
Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -1389,6 +1389,9 @@ public void ReplaceFunctionWithNullArgumentAsync()
13891389 [ Test ( Description = "GH-2860" ) ]
13901390 public async Task StringFormatWithTrimAsync ( )
13911391 {
1392+ if ( TestDialect . HasBrokenTypeInferenceOnSelectedParameters )
1393+ Assert . Ignore ( "Current dialect does not support this test" ) ;
1394+
13921395 var q =
13931396 from e in db . Employees
13941397 select new { Name = $ "{ e . FirstName } { e . LastName } ". Trim ( ) , Phone = e . Address . PhoneNumber } ;
Original file line number Diff line number Diff line change @@ -1974,6 +1974,9 @@ public void ReplaceFunctionWithNullArgument()
19741974 [ Test ( Description = "GH-2860" ) ]
19751975 public void StringFormatWithTrim ( )
19761976 {
1977+ if ( TestDialect . HasBrokenTypeInferenceOnSelectedParameters )
1978+ Assert . Ignore ( "Current dialect does not support this test" ) ;
1979+
19771980 var q =
19781981 from e in db . Employees
19791982 select new { Name = $ "{ e . FirstName } { e . LastName } ". Trim ( ) , Phone = e . Address . PhoneNumber } ;
You can’t perform that action at this time.
0 commit comments