-
-
Notifications
You must be signed in to change notification settings - Fork 229
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Parse exceptions with (nested) static classes #773
Comments
Hello @poostwoud; This is indeed an error, related to #772 . However |
This has been fixed. And to make this work, use the following: using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
using System.Linq.Dynamic.Core.CustomTypeProviders;
using FluentAssertions;
using Xunit;
namespace System.Linq.Dynamic.Core.Tests.CustomTypeProviders
{
[SuppressMessage("ReSharper", "InconsistentNaming")]
[SuppressMessage("ReSharper", "MemberHidesStaticFromOuterClass")]
public class CustomTypeProviderTests
{
private readonly ParsingConfig _config = new()
{
CustomTypeProvider = new MyCustomTypeProvider(ParsingConfig.Default, typeof(IS), typeof(IS.NOT), typeof(IST), typeof(IST.NOT)),
IsCaseSensitive = true
};
[Theory]
[InlineData("IS.NULL(null)", true)]
[InlineData("IS.NOT.NULL(null)", false)]
[InlineData("IST.NULL(null)", true)]
[InlineData("IST.NOT.NULL(null)", false)]
public void Test(string expression, bool expected)
{
// Act 1
var lambdaExpression = DynamicExpressionParser.ParseLambda(
_config,
false,
[],
typeof(bool),
expression
);
// Act 2
var result = (bool?)lambdaExpression.Compile().DynamicInvoke();
// Assert
result.Should().Be(expected);
}
public class MyCustomTypeProvider : DefaultDynamicLinqCustomTypeProvider
{
private readonly HashSet<Type> _types;
public MyCustomTypeProvider(ParsingConfig config, params Type[] types) : base(config)
{
_types = new HashSet<Type>(types);
}
public override HashSet<Type> GetCustomTypes()
{
return _types;
}
}
public static class IS
{
public static bool NULL(object? value) => value == null;
public static class NOT
{
public static bool NULL(object? value) => value != null;
}
}
public static class IST
{
public static bool NULL(object? value) => value == null;
public static class NOT
{
public static bool NULL(object? value) => value != null;
}
}
}
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
1. Description
I'm trying to create an Excel-like function syntax using nested static classes. I'm experiencing difficulties with some class names and nested classes. Below is the Fiddle code:
2. Exception
Fiddle output:
3. Fiddle
https://dotnetfiddle.net/nRMI2q
The text was updated successfully, but these errors were encountered: