Skip to content

Develop SQL queries using this ASP.NET CORE app and store them for later use in your own applications, using Dapper.

License

Notifications You must be signed in to change notification settings

netbizsystems/SQL-InfoSchema-App

Repository files navigation

SQL-InfoSchema-App

ASP.NET Core MVC application that will help you formulate SQL select queries and store them in a database table for later runtime use by your application(s). Unique interface is built by reading the SQL InformationSchema to determine tables and relationships. Sample code, generated by the app, shows how to implement a stored query in a Web API controller.

** THIS IS A VERY EARLY LOOK (APRIL-2019) -- STAY TUNED FOR UPDATES

Tweet

Pick a Table

After selecting a base table for your query, related tables are automatically selected based on declaritive references found in your schema. Those FK references will be included in your query using a JOIN. Don't worry, you can exclude any of them on the next page.

InfoView

Tweak and Save the Generated Query

Sample data is queried from your database to make it easy to see exactly what the data looks like in the table(s) that you have chosen. Exclude a related table if it is not of interest and/or exclude columns that are also not of interest. Click the Run Query button to see which rows will be returned from your query as defined.

Click Save SQL Query to save your query to the SQL query store (table) and make it available for use in any application that wants to use that queried result.

QueryView

See The Code

The cloned solution has a class library with several helpful classes to work with your query. This example shows how the QueryRunnerController class (from .Net Controller) can be used to surface your query in a client application. MUCH more coming here... stay tuned!!

CodeView

Manage and Test Your Queries (coming soon)

InfoView

Prerequisites

Setup Requirements to Run Local

  • Open the SqlInformationSolution.sln solution in Visual Studio.
  • Create the required database objects using the "Create AES.InfoQuery.sql" found in the solution items folder.
  • Update the database connection requirements (shown below) in appsettings.json.
  • Build and Run (F5)

appsettings.json - requires two connection strings, one for the app meta-data and the other for the database that you are writing queries against. The SQL/DDL script for the meta-data tables can be found in the Solution Items folder.

{
  "Logging": {
    "LogLevel": {
      "Default": "Warning"
    }
  },
  "AllowedHosts": "*",
  "ConnectionStrings": {
    "DefaultConnection": "Data Source=.;Initial Catalog=AdventureWorksLT2014;Integrated Security=True;MultipleActiveResultSets=True;App=SQLInfoApp",
    "InfoStoreConnection": "Data Source=(localdb)\\MSSQLLocalDB;Initial Catalog=SQLInformationStore;Integrated Security=True;"
  }
}

About

Develop SQL queries using this ASP.NET CORE app and store them for later use in your own applications, using Dapper.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages