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()
1389
1389
[ Test ( Description = "GH-2860" ) ]
1390
1390
public async Task StringFormatWithTrimAsync ( )
1391
1391
{
1392
+ if ( TestDialect . HasBrokenTypeInferenceOnSelectedParameters )
1393
+ Assert . Ignore ( "Current dialect does not support this test" ) ;
1394
+
1392
1395
var q =
1393
1396
from e in db . Employees
1394
1397
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()
1974
1974
[ Test ( Description = "GH-2860" ) ]
1975
1975
public void StringFormatWithTrim ( )
1976
1976
{
1977
+ if ( TestDialect . HasBrokenTypeInferenceOnSelectedParameters )
1978
+ Assert . Ignore ( "Current dialect does not support this test" ) ;
1979
+
1977
1980
var q =
1978
1981
from e in db . Employees
1979
1982
select new { Name = $ "{ e . FirstName } { e . LastName } ". Trim ( ) , Phone = e . Address . PhoneNumber } ;
You can’t perform that action at this time.
0 commit comments