Git Product home page Git Product logo

Comments (5)

maxtoroq avatar maxtoroq commented on July 3, 2024

I'll see what I can do. Looks similar to Oracle's paging, using ROW_NUMBER() OVER(ORDER BY ).

from dbextensions.

maxtoroq avatar maxtoroq commented on July 3, 2024

@cnsharp SqlServer 2008 support is complete. Please checkout the master branch to try it out. You have to decorate your database class with [Provider(typeof(Sql2008Provider))] to enable it, e.g.:

[Provider(typeof(Sql2008Provider))]
class Sql2008Database : Database {
   ...
}

from dbextensions.

 avatar commented on July 3, 2024

Thank you very much!You are so quickly and dedicated.I'll try it now.

from dbextensions.

 avatar commented on July 3, 2024

@maxtoroq
Hi Max,

Our DBA recommended a style like this which has a better performance in the middle of many pages

WITH
ID AS(
SELECT
__row_id = ROW_NUMBER() OVER(order by id DESC),
id
FROM dbo.tb WITH(NOLOCK)
WHERE column_id = 1
)
SELECT
ID.__row_id,
DATA.*
FROM ID
INNER JOIN dbo.tb DATA WITH(NOLOCK)
ON DATA.id = ID.id
WHERE ID.__row_id BETWEEN 5000 AND 5100
;

I want to implement it by myself.
The question is how can I pass id/primary key to SqlSet?Maybe I could add an id property to SqlSet.

What is your opinion?
Thanks!

from dbextensions.

maxtoroq avatar maxtoroq commented on July 3, 2024

@cnsharp That level of fine tuning is not supported, use SqlBuilder instead. If you have more questions please create a new issue.

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.