Giter VIP home page Giter VIP logo

Comments (5)

viceroypenguin avatar viceroypenguin commented on June 12, 2024 1

SqlFn.JsonValue already exists inside of linq2db. No need to add a new function.

from linq2db.

sdanyliv avatar sdanyliv commented on June 12, 2024

Can you try to use this extension? #1230 (comment)
There is no need to define new mapping schema.

from linq2db.

sd-mobile avatar sd-mobile commented on June 12, 2024

Can you try to use this extension? #1230 (comment) There is no need to define new mapping schema.

Суть в том, что мне нужно динамически, из 1000 сохраненных в колонке с json значений прочитать только 5 параметров, заранее не известных.

Именно поэтому я пытаюсь использовать этот код

const int readColCount = 5;

                foreach (var col in Enumerable.Range(0, readColCount))
                {
                    var colExpr = $"JSON_VALUE({nameof(TestJsonWrite.JsonData)}, '$.\"{col}\"') AS '{col}'";
                    fm.Entity<TestJsonRead>()
                        .Property(x => Sql.Property<float?>(x, col.ToString()))
                        .IsExpression(row => Sql.Expr<float?>(colExpr), isColumn: true)
                        ;
                }

from linq2db.

sd-mobile avatar sd-mobile commented on June 12, 2024

SqlFn.JsonValue already exists inside of linq2db. No need to add a new function.

I know, but this is just an example, in fact, my solution should work with various databases, including Sql Server, Postgres, SQLite.

If linq2db has uniform support for this, it will be great.

from linq2db.

sd-mobile avatar sd-mobile commented on June 12, 2024

Addition
If i replace the float? to string?, then the error text changes to
"Dynamic column setter is not to be called."

`

foreach (var col in Enumerable.Range(0, readColCount))
{
var colExpr = $"JSON_VALUE({nameof(TestJsonWrite.JsonData)}, '$."{col}"') AS '{col}'";
fm.Entity()
.Property(x => Sql.Property<string?>(x, col.ToString()))
.IsExpression(row => Sql.Expr<string?>(colExpr), isColumn: true)
;
}
`
Sorry, but code editor is messing up the text.

from linq2db.

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.