Git Product home page Git Product logo

Comments (7)

maxtoroq avatar maxtoroq commented on July 23, 2024

Added SQL.Param method to workaround this issue, e.g.:

byte[] imageData = GetImageData();

var update = SQL
    .UPDATE("images")
    .SET("content = {0}", SQL.Param(imageData))
    .WHERE("id = {0}", id);

from dbextensions.

Gillardo avatar Gillardo commented on July 23, 2024

Cannot find SQL.param in latest code ?? Has it been removed? I am having trouble adding the byte[] array

ArgumentException: No mapping exists from object type System.Int64[] to a known managed provider native type.

from dbextensions.

maxtoroq avatar maxtoroq commented on July 23, 2024

SQL.Param was dropped in v6. Arrays are no longer special. To expand an array into a list you must call SQL.List.

from dbextensions.

Gillardo avatar Gillardo commented on July 23, 2024

And this also applies to byte[] when the field is a concurrency field?

from dbextensions.

maxtoroq avatar maxtoroq commented on July 23, 2024

No, it shouldn't. Perhaps if you show me some code I can help.

from dbextensions.

Gillardo avatar Gillardo commented on July 23, 2024

Same code as at the top of here #39

from dbextensions.

maxtoroq avatar maxtoroq commented on July 23, 2024

Looks like a provider issue. If System.Int64[] is the type of the parameter, looks like the provider is getting the same type but for some reason not liking it.

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.