Git Product home page Git Product logo

Comments (5)

hrvoje-grabusic avatar hrvoje-grabusic commented on July 23, 2024

This works:
.WHERE("i.UUID IN ({0})", (Array)uuids.ToArray());

from dbextensions.

maxtoroq avatar maxtoroq commented on July 23, 2024

C# will cast an array of any reference type to object[], but it won't cast an array of a value type.

So,

WHERE("i.UUID IN ({0})", new string[] {"test1","test2","test3"});

is equivalent to

WHERE("i.UUID IN ({0})", "test1","test2","test3");

To work around it you have to explicitly create the params array:

WHERE("i.UUID IN ({0})", new object[] { new string[] { "test1","test2","test3" } });

or cast the array to object:

WHERE("i.UUID IN ({0})", (object)new string[] { "test1","test2","test3" });

This is not an issue with value type arrays, e.g.

WHERE("i.UUID IN ({0})", new int[]{ 1, 2, 3 });

is equivalent to

WHERE("i.UUID IN ({0})", new object[] { new int[]{ 1, 2, 3 } });

from dbextensions.

hrvoje-grabusic avatar hrvoje-grabusic commented on July 23, 2024

I see it confuses the array values for the function parameters.
It is a bit easy to make a mistake here, i spent hours on this mistake.

At first i tried to give it a list but it says it doesn't support the type.
I think this would be more clear if it accepted list also.

Then you could do a simple .ToList() and you would know that those will be values and they cant be interpreted as function parameters.

It would also be easier to explain this situation in docs IMO.

I will use it like this from now on:
(Array)uuids.ToArray());

I just have to be vigilant not to forget to typecast it.

from dbextensions.

maxtoroq avatar maxtoroq commented on July 23, 2024

Yes, this needs to be explained in the documentation. I'll leave this issue open as a reminder.

from dbextensions.

maxtoroq avatar maxtoroq commented on July 23, 2024

Updated documentation.

from dbextensions.

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.