QueryFirst - Typed Raw SQL for everybodyThe QueryFirst extension for VS Code generates a C# wrapper for your .sql files. This is the VS Code version of the nearly-famous Visual Studio extension Author your SQL in a real environmentSyntax checking- Intellisense for tables and columns - Get familiar with your data A generated C# wrapper
To use QueryFirst
TL;drQuery-first is a visual studio extension for working intelligently with SQL in C# projects. Put your queries in .sql files with "QueryFirst" in a comment on the first line. When you build your query (with the tasks provided), Query-first runs it (in a sandbox. No DB changes are persisted), retrieves the schema and generates two classes and an interface: a wrapper (repository) class with methods Execute(), ExecuteScalar(), ExecuteNonQuery() etc, its corresponding interface, and a POCO encapsulating a line of results. As such, your query stays intact in its own .sql file. It can be edited, validated and test-run "in-situ" with design-time mock inputs and intellisense for your tables and columns. In your application code, running your query takes one line of code, and returns a POCO (or an IEnumerable of POCOs, or a List of POCOs) with meaningful parameter and property names, so enabling intellisense for your input parameters and results. The interface and POCO are directly usable for unit testing. The generated code stands alone. There is no runtime dll and no reflection. The only dependencies are System libraries. You can quietly forget about ADO : Command, Connection, Reader and parameter creation are all handled for you, with best practices baked in. At no point do you have to remember the name of a column, or its type, or its index in the reader. And you've absolutely nothing new to learn, provided you still remember how to write SQL :-) QueryFirst provides a task that will run all queries in your application and regenerate all wrapper classes. As such, you can integration-test all your queries at any time, and changes in your database schema will directly produce compilation errors in your application. If the query is broken, the wrapper classes will not compile. If the query runs but your code tries to access columns that are no longer present in the result, the error will point at the line in your code that tries to access the missing property. QueryFirst, first published in 2016, pionneered the 'typed raw sql' approach to the database problem (sql validated in situ, db types used in application code). This approach is gaining traction, and if your fancy is typescript and postgres, you will love pgtyped. The author, Adel, has a great presentation on strong typing here. If Go is your thing, see sqlc. For Scala, see Scala-slick (look for the section on type-checked sql statements.) GotchasThere are two that we know of:
Ambitious?We expect that QueryFirst will quickly become your favourite data access method. Please urgently let us know if this is not the case.
* only with the help of EF reverse POCO generator (not actually part of EF), but you'll need to open your solution as administrator, find the .tt and right-click on 'run custom tool'. Not kidding. |