All Projects → bbsimonbb → Query First

bbsimonbb / Query First

Licence: mit
Typed raw SQL for everybody ! This is the original VS Extension.

Labels

Projects that are alternatives of or similar to Query First

Q
q - Run SQL directly on CSV or TSV files
Stars: ✭ 8,809 (+13452.31%)
Mutual labels:  sql
Ali Data Mining
阿里巴巴大数据竞赛
Stars: ✭ 62 (-4.62%)
Mutual labels:  sql
Countries States Cities Database
🌍 World countries, states, regions, provinces, cities, towns in JSON, SQL, XML, PLIST, YAML, and CSV. All Countries, States, Cities with ISO2, ISO3, Country Code, Phone Code, Capital, Native Language, Timezones, Latitude, Longitude, Region, Subregion, Flag Emoji, and Currency. #countries #states #cities
Stars: ✭ 1,130 (+1638.46%)
Mutual labels:  sql
Reform
A better ORM for Go, based on non-empty interfaces and code generation.
Stars: ✭ 1,103 (+1596.92%)
Mutual labels:  sql
Rpg Boilerplate
Relay (React), Postgres, and Graphile (GraphQL): A Modern Frontend and API Boilerplate
Stars: ✭ 62 (-4.62%)
Mutual labels:  sql
Eventql
Distributed "massively parallel" SQL query engine
Stars: ✭ 1,121 (+1624.62%)
Mutual labels:  sql
Squid
🦑 Provides SQL tagged template strings and schema definition functions.
Stars: ✭ 57 (-12.31%)
Mutual labels:  sql
Ahwen
A simple SQL database
Stars: ✭ 66 (+1.54%)
Mutual labels:  sql
Library
Java Books Management System
Stars: ✭ 61 (-6.15%)
Mutual labels:  sql
Pypika
PyPika is a python SQL query builder that exposes the full richness of the SQL language using a syntax that reflects the resulting query. PyPika excels at all sorts of SQL queries but is especially useful for data analysis.
Stars: ✭ 1,111 (+1609.23%)
Mutual labels:  sql
Objectivesql
ObjectiveSQL is an ORM framework in Java based on ActiveRecord pattern, which encourages rapid development and clean, codes with the least and convention over configuration.
Stars: ✭ 1,109 (+1606.15%)
Mutual labels:  sql
Osql Experimental
A community-oriented fork of osquery with support for cmake, public CI testing, and regular releases
Stars: ✭ 62 (-4.62%)
Mutual labels:  sql
Sqlite orm
❤️ SQLite ORM light header only library for modern C++
Stars: ✭ 1,121 (+1624.62%)
Mutual labels:  sql
Sql.js
A javascript library to run SQLite on the web.
Stars: ✭ 9,594 (+14660%)
Mutual labels:  sql
Event Management
helps to register an users for on events conducted in college fests with simple logic with secured way
Stars: ✭ 65 (+0%)
Mutual labels:  sql
Dolt
Dolt – It's Git for Data
Stars: ✭ 9,880 (+15100%)
Mutual labels:  sql
Tdb 4.3.4 nlu
If you are looking for TDB for 4.3.4 go to:
Stars: ✭ 62 (-4.62%)
Mutual labels:  sql
Examples Orms
Sample uses of CockroachDB with popular ORMs
Stars: ✭ 65 (+0%)
Mutual labels:  sql
Pqt
Postgres schema definition, sql/go, code generation package.
Stars: ✭ 65 (+0%)
Mutual labels:  sql
Reporting Services Examples
📕 Various example reports I use for SQL Server Reporting Services (SSRS) as well as documents for unit testing, requirements and a style guide template.
Stars: ✭ 63 (-3.08%)
Mutual labels:  sql

query-first

A much smarter way to work with SQL.

Query first is a "lightweight, low ceremony" data access tech, for working with SQL in C# projects. Develop your queries using the QueryFirst .sql template (in Visual C# items). When you save your file, QueryFirst will generate a wrapper class and a POCO for your results.

You will need to install the VSIX, then in your project, create qfconfig.json beside or above your .sql files. To create a query, choose New QueryFirstQuery from the Add => New Item dialogue.

// qfconfig.json
{
  "defaultConnection": "Data Source=localhost;Initial Catalog=Northwind;Integrated Security=True",
  "provider:["System.Data.SqlClient"(the default)/"MySql.Data.MySqlClient"/"Npgsql"],
  "helperAssembly":[pathToDll],
  "makeSelfTest":true/false
} 

// QfRuntimeConnection.cs
using System.Data;
using System.Data.SqlClient;

namespace CoreWebAppSqlServer
{
    public class QfRuntimeConnection
    {
        public static IDbConnection GetConnection()
        {
            return new SqlConnection("Data Source=localhost;Initial Catalog=Northwind;Integrated Security=True");
        }
    }
}

Read more and download the VSIX here. There's a little code project article here.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].