You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 3, 2022. It is now read-only.
@meikeric I developed a LINQ provider already, but as an external tool. A provider for EF is also a good idea as contributed project.
The scope of this issue is to provide a fluid interface for building complex queries within DeveelDB core library itself, or for those applications embedding it. Nothing too advanced, but to take out the string building outside the process (that is prone to typos and makes difficult debugging).
This requirement emerged from the fact that the CREATE VIEW ... statements inside DeveeldB (for the INFORMATION_SCHEMA ) are all built using strings, and in a certain moment it became difficult to track the errors: in fact, building a view from code is still a hard job
Provide a builder that allows the creation in code of SQL Queries, instead of going through strings or complex SQL Expressions
The text was updated successfully, but these errors were encountered: