We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e49208 commit d11c867Copy full SHA for d11c867
test/System.Linq.Dynamic.Core.Tests/QueryableTests.Select.cs
@@ -324,11 +324,15 @@ public void Select_Dynamic_IntoTypeWithNullableParameterInConstructor()
324
Check.That(resultDynamic.Last()).Equals(result.Last());
325
}
326
327
- [Fact(Skip = "867")]
+ [Fact]
328
public void Select_Dynamic_SystemType1()
329
{
330
// Arrange
331
- var config = new ParsingConfig { AllowNewToEvaluateAnyType = true };
+ var config = new ParsingConfig
332
+ {
333
+ AllowNewToEvaluateAnyType = true
334
+ };
335
+ config.UseDefaultDynamicLinqCustomTypeProvider([typeof(DirectoryInfo)]);
336
var queryable = new[] { "test" }.AsQueryable();
337
338
// Act
0 commit comments