Giter VIP home page Giter VIP logo

Comments (8)

JonathanMagnan avatar JonathanMagnan commented on June 12, 2024

Hello @Mat3oo ,

Is there a reason why you don't create the list outside of the LINQ query and check in the LINQ if the list contains it?

Such as:

var list = new List<int> { 1, 2, 3, 4};

DbSet<Element>
    .Where(e => e.Name == "test")
    .Where(e => e.Active)
    .Where(e => list.Contains(e.Id));

Best Regards,

Jon

from entityframework-classic.

Mat3oo avatar Mat3oo commented on June 12, 2024

I'm using urs Execute method:

var list = new List<int> { 1, 2, 3, 4};

DbSet<Element>
    .Execute<object>(
    "Where(e => e.Name == \"test\")" +
    "Where(e => e.Active)" +
    "Where(e => list.Contains(e.Id))");

and in this case it's not possible for string to know about list.
In the repo from first comment is nice example.

*Missclick Close issue

from entityframework-classic.

JonathanMagnan avatar JonathanMagnan commented on June 12, 2024

You can pass it in parameter such as:

var list = new List<int> { 1, 2, 3, 4};

DbSet<Element>
    .Execute<object>(
    "Where(e => e.Name == \"test\")" +
    "Where(e => e.Active)" +
    "Where(e => list.Contains(e.Id))", new { list });

from entityframework-classic.

Mat3oo avatar Mat3oo commented on June 12, 2024

You can pass it in parameter

I know, but not the case for me. I passing string between services, so I would like to use new [] {} inplace.

from entityframework-classic.

JonathanMagnan avatar JonathanMagnan commented on June 12, 2024

Hello @Mat3oo ,

Just to let you know that we continue to work on both issues.

We made some progression last week and find out why this happening (due to a convert on our side for using the Contains method).

Everything work without EF since this CAST doesn't cause any problem. However, in EF, this additional CAST cannot be translated in SQL which throw the error.

from entityframework-classic.

JonathanMagnan avatar JonathanMagnan commented on June 12, 2024

Hello @Mat3oo ,

A new version has been released today.

We fixed this issue and the C# Eval Library will no longer try to CAST the array into IEnumerable which was causing the error in Entity Framework.

Let me know if everything works as expected.

Best Regards,

Jon

from entityframework-classic.

Mat3oo avatar Mat3oo commented on June 12, 2024

It's seems with Z.Expressions.Eval v4.0.18 the problem new [] is resolved, and also #59 working now as expected, gj 👍🏼.

from entityframework-classic.

JonathanMagnan avatar JonathanMagnan commented on June 12, 2024

Great Mat3oo!

Don't hesitate to contact me for further assistance.

Best regards,

Jon

from entityframework-classic.

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.