Giter Site home page Giter Site logo

dbexpressions's Introduction

dbexpressions's People

Contributors

greeng0 avatar pavrosa avatar seesharper avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar

dbexpressions's Issues

Adding a license

This repository currently doesn't have a license, and as per https://choosealicense.com/no-permission/, a repository without a license cannot be used, modified, or shared.

I'd like to use this project, but don't want to encroach on any legal issues. @seesharper , would you consider adding a license for the repository?

Thanks

Delete syntax

Need to add more delete syntax tests as we are moving towards support for Oracle.

It turns out that Oracle can not handle joins as part of the delete statement unless they are wrapped in a sub query.

This means that something like:

delete from orderdetails od inner join orders o on o.Order  = od.orderid and o.order  = -1;

would need to be (re)written to something like:

delete from (SELECT  od.* FROM orderdetails od inner join orders o on o.Orderid  = od.orderid and o.orderid  = -1)

The question is should we rewrite the expression tree or should we handle this in VisitDeleteExpression ?

http://www.dbforums.com/oracle/1006077-delete-join-query.html

Add support for shema/owner specification

Add support for default schema.

dbSelectQuery.SetDefaultSchema("dbo")
.Select(e => e.Column("SomeColumn")).From(e => e.table("SomeTable"));

SQL SERVER

SELECT [SomeColumn] FROM [dbo].[SomeTable] 

Also make it possible to provide the schema using the Table factory method

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.