Skip to content

Latest commit

 

History

History
64 lines (42 loc) · 1.54 KB

3rdPartyVisionsTips.md

File metadata and controls

64 lines (42 loc) · 1.54 KB

EASY-SYSTEM-Builder & EASY-DATA-Center Visual Studio Help


Migration between Database Types

  • Install 'Mysql WorkBench' SW
  • run migrations

Help: https://severalnines.com/blog/how-migrate-mssql-mysql/
SW: https://dev.mysql.com/downloads/file/?id=517975


Windows Store Download App Link Generator


Windows Apps & Windows Tools

  • in start menu Windows Kits
  • cmd Reset Store Settings
wsreset.exe

MarkDown Item Template


API Condition for Ignore In Swagger Docs

[ApiExplorerSettings(IgnoreApi = true)]

API Description For Descripting In Swagger Docs

[SwaggerTag("API Template with INSERT/UPDATE/DELETE/SELECT AND FILTERING APIs")]
public class TemplateListApi : ControllerBase {

[SwaggerOperation(Summary = "Get All records", Description = "Async standard select record API", OperationId = "Select all records", Tags = new[] { "TemplateListApi" })]
public async Task<string> GetTemplateList() {

[HttpDelete("/TemplateList/{id}")]
[Consumes("application/json")]
[SwaggerOperation(Summary = "Delete Record", Description = "Async standard Delete record API", OperationId = "Delete Record", Tags = new[] { "TemplateListApi" })]
public async Task<string> DeleteTemplateList(string id) {