RSCG example–Query Generator–part 21
name | DatabaseToWebAPI |
nuget |
https://www.nuget.org/packages/QueryGenerator/ |
link | http://msprogrammer.serviciipeweb.ro/category/roslyn/ |
author | Andrei Ignat |
This will generate code (WebAPI/Swagger) for any table/view from SqlServer. You can see the table via Angular The code that you start with is
01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 | //add queries.json with all the connection string and tables necessary //add in templates folder the files to generate controllers using RoslynQueryGenerator; using System.Collections.Generic; //TODO : modify namespace namespace WebFromQuery.Classes { public class FieldDescription { public string ItemName { get ; set ; } public string QueryName { get ; set ; } public string FieldName { get ; set ; } public string FieldType { get ; set ; } public SearchField DefaultValue { get ; set ; } } public class DisplayData { public string QueryName { get ; set ; } public string ItemName { get ; set ; } public FieldDescription[] FieldNames { get ; set ; } public Dictionary< string , object = "" >[] Values { get ; set ; } } } |
The code that you will use is
1 2 3 4 5 6 7 | //In Startup services.AddFactoryGenerated(); app.UseDefaultFiles(); app.UseStaticFiles(); |
The code that is generated is
1 2 3 | //ApplicationDbContext : too much lines - see project //Controllers : too much lines - see project |
Example Code: https://github.com/ignatandrei/RSCG_Examples/tree/main/QueryGenerator
Leave a Reply