Giter Site home page Giter Site logo

Comments (12)

StefH avatar StefH commented on June 3, 2024

@ReginaldBull
Please provide a full working example dotnetfiddle

from system.linq.dynamic.core.

ReginaldBull avatar ReginaldBull commented on June 3, 2024

I don't know how to provide a fiddle example for a problem that exists within a WebGL (wasm) compiled project.

from system.linq.dynamic.core.

StefH avatar StefH commented on June 3, 2024

Can you provide the part from your own code (including the entities / dtos) and the Dynamic LINQ Expression you are trying to parse?

from system.linq.dynamic.core.

ReginaldBull avatar ReginaldBull commented on June 3, 2024

Basically it all boils down to this:

public class CustomTypeProvider : DefaultDynamicLinqCustomTypeProvider
{
    private readonly HashSet<Type> _types;

    public CustomTypeProvider(Type[] types)
    {
        _types = new HashSet<Type>(types ?? new Type[]
        {
        })
        {
            typeof(Choice),
            typeof(ProductConfiguration),
            typeof(IEnumerable<>)
        };
    }

    public override HashSet<Type> GetCustomTypes() => _types;
}

public class ProductConfiguration{
    public string Code {get; private set;}
    public IEnumerable<IChoice> Choices {get; private set;}=new List<IChoice>();
}

public interface IChoice {
    string Reference{get}
}

public class Choice : IChoice{
    public string Reference {get; private set;}
}

string expression = "input.Choices.FirstOrDefault(p => p.Reference == \"MyReference\")";

Type[] customTypes = new []{
    typeof(Choice),
    typeof(ProductConfiguration),
    typeof(IEnumerable<>)
};

ParameterExpression[] parameterExpressions = new []{
    Expression.Parameter(typeof(ProductConfiguration), "input")
};

ParsingConfig config = new ParsingConfig
{
    CustomTypeProvider = new CustomTypeProvider(customTypes),
    IsCaseSensitive = false
};

EpxressionParser parser = new ExpressionParser(parameterExpressions, expression, new object[]{}, config);

Expression exp = parser.Parse<Choice>(expression, parameterExpression, customTypes);

ProductConfiguration productConfiguration = CreateValidProductConfiguration();

object[] input = new object[]{
    productConfiguration
};

var result = exp(input);

As mentioned, running it locally it works. The problem shows up when using that approach inside a Unity3D WebGL build.

from system.linq.dynamic.core.

StefH avatar StefH commented on June 3, 2024

Can you make a simple and small Unity3D WebGL example project ?

from system.linq.dynamic.core.

ReginaldBull avatar ReginaldBull commented on June 3, 2024

I created a minimal project for reproduction:

https://github.com/ReginaldBull/LinqDynamicCoreUnity3D

from system.linq.dynamic.core.

StefH avatar StefH commented on June 3, 2024

@ReginaldBull
Thanks for the project, however this is still a very big project. Can you please make a very easy and simple test project please?

from system.linq.dynamic.core.

ReginaldBull avatar ReginaldBull commented on June 3, 2024

Hello,
I removed some unnecessary folders. But this is quite a small project. The source in question can be found under the folder Assets/Scripts.

from system.linq.dynamic.core.

StefH avatar StefH commented on June 3, 2024

@ReginaldBull
Sorry, I cannot open this project, I do not have all dependencies installed on my system.

Can you maybe use the extension method instead of directly using new ExpressionParser?

And try to write the query you want to execute first as normal LINQ query, and from that, create a the dynamic.

Example:

using System.Linq.Dynamic.Core;
using ConsoleApp1;

string expression = "Choices.FirstOrDefault(p => p.Reference == \"MyReference\")";

Type[] customTypes = new[]
{
    typeof(Choice),
    typeof(ProductConfiguration),
    typeof(IEnumerable<>)
};

var config = new ParsingConfig
{
    CustomTypeProvider = new CustomTypeProvider(customTypes),
    IsCaseSensitive = false
};

var productConfiguration = new ProductConfiguration("code");
var input = new[]
{
    productConfiguration
};

var result = input.Select(i => i.Choices.FirstOrDefault(c => c.Reference == "MyReference")).ToArray();

var resultQ = input.AsQueryable().Select(config, expression).ToDynamicArray();

from system.linq.dynamic.core.

ReginaldBull avatar ReginaldBull commented on June 3, 2024

Thank you.

Today I tried with the extension method.
Running it in Unity Editor mode is working fine but as soon as the web assembly is generated it produces the same error described at the start of this issue.

from system.linq.dynamic.core.

ReginaldBull avatar ReginaldBull commented on June 3, 2024

One additional finding. I tried again and debugged a bit in deep and found this exception occuring:
System.IO.FileNotFoundException: Could not load the file 'System.Private.Corelib'.

System.IO.FileNotFoundException: Could not load the file 'System.Private.Corelib'. File name: 'System.Private.Corelib' at System.AppDomain.Load (System.Reflection.AssemblyName assemblyRef, System.Security.Policy.Evidence assemblySecurity) [0x0007a] in <35594092a38441a79b40e2237d5e8762>:0 at (wrapper remoting-invoke-with-check) System.AppDomain.Load(System.Reflection.AssemblyName,System.Security.Policy.Evidence) at System.AppDomain.Load (System.Reflection.AssemblyName assemblyRef) [0x00000] in <35594092a38441a79b40e2237d5e8762>:0 at (wrapper remoting-invoke-with-check) System.AppDomain.Load(System.Reflection.AssemblyName) at System.Reflection.Assembly.Load (System.Reflection.AssemblyName assemblyRef) [0x00005] in <35594092a38441a79b40e2237d5e8762>:0 at System.Linq.Dynamic.Core.Parser.EnumerationsFromMscorlib.AddEnumsFromAssembly (System.String assemblyName) [0x00006] in <4cc38c5670114affad31d8b74c3f62b1>:0

from system.linq.dynamic.core.

StefH avatar StefH commented on June 3, 2024

@ReginaldBull
Maybe related to?

from system.linq.dynamic.core.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.