How to use nodejs to write a data table entity class generation tool for C#

How to use nodejs to write a data table entity class generation tool for C#

Although Microsoft provides T4 templates, I find them very difficult to use. There is nothing like writing templates directly with scripts.

Because I want to make peripheral tools for an old project, I need to connect to the database.

I am used to using EntityFrameworkCore, because after all, it is the ORM I have been using since my debut.

In the EF6 era, vs provided dbfirst, but it seemed to be only for sqlserver.

Because the database this time is MySQL, many things in VS are not fully supported.

But if the support is not enough, you can do it yourself to have enough food and clothing.

We use the ejs template engine as the generator.

npm install ejs

Then use the query to get the table structure:

b.query('desc posts').then(res => {

})

Then write the template. The template syntax of ejs is very similar to the template syntax of the aspx era, both of which are angle brackets + percent signs <%%>. I believe that those who have aspx development experience are still very familiar with this template engine.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;

namespace your namespace {
public class <%= table -%>
{
<% rows.forEach(function(row){ -%>
<% if(row.Type.indexOf('bigint')!=-1){ -%>
public long <%= row.Field %> { get; set; }
<% } -%>
<% if(row.Type.indexOf('datetime')!=-1){ -%>
public DateTime <%= row.Field %> { get; set; }
<% } -%>
<% if(row.Type.indexOf('varchar')!=-1){ -%>
public string <%= row.Field %> { get; set; }
<% } -%>
<% if(row.Type.indexOf('mediumtext')!=-1){ -%>
public string <%= row.Field %> { get; set; }
<% } -%>
<% if(row.Type.indexOf('bit')!=-1){ -%>
public bool <%= row.Field %> { get; set; }
<% } -%>
<% if(row.Type.indexOf('longtext')!=-1){ -%>
public string <%= row.Field %> { get; set; }
<% } -%>
<% }); -%>
}
}

In the above template, corresponding C# type mappings are made for different MySQL data types.

Then use ejs to render a text, and finally save it to the folder.

var tableName = 'table name'; //The corresponding class name in the template and the name of the generated cs file ejs.renderFile('./template/posts.ejs', { rows: res.rows, 'table': tableName}, (err, str) => {
        if (err) {
            console.error(err);
        }
        else {
            let temp = path.join(__dirname, 'temp');
            var exist = fs.existsSync(temp)
            if (!exist) {
                fs.mkdirSync()
            }
            fs.writeFile(path.join(temp, tableName+'.cs'), str, (err) => {
                if (err) {
                    console.error(err);
                } else {
                    console.log('Template generated successfully');
                }
            })

        }
    })

Use node to execute it and a cs file will be generated.

Since I don't have many tables, I just generate them one by one. If you want to expand the generation of the entire database, you can write a few more lines of code to generate the entire library!

The above is the details of how to use nodejs to write an entity class generation tool for a data table in C#. For more information about nodejs, please pay attention to other related articles on 123WORDPRESS.COM!

You may also be interested in:
  • NodeJs high memory usage troubleshooting actual combat record
  • Detailed explanation of using Nodejs built-in encryption module to achieve peer-to-peer encryption and decryption
  • Detailed explanation of asynchronous iterators in nodejs
  • Detailed explanation of nodejs built-in modules
  • Nodejs module system source code analysis
  • A brief discussion on event-driven development in JS and Nodejs
  • How to use module fs file system in Nodejs
  • Summary of some tips for bypassing nodejs code execution
  • Nodejs Exploration: In-depth understanding of the principle of single-threaded high concurrency
  • Nodejs error handling process record

<<:  Complete steps to configure basic user authentication at the Nginx level

>>:  MySQL 8.0.11 Installation Tutorial under Windows

Recommend

XHTML 1.0 Reference

Arrange by functionNN : Indicates which earlier ve...

Vue implements seamless scrolling of lists

This article example shares the specific code of ...

Solution to Navicat Premier remote connection to MySQL error 10038

Remote connection to MySQL fails, there may be th...

How to configure environment variables in Linux environment

JDK download address: http://www.oracle.com/techn...

Tutorial on installing Elasticsearch 7.6.2 in Docker

Install Docker You have to install Docker, no fur...

js method to delete a field in an object

This article mainly introduces the implementation...

HTML table border control implementation code

Generally, when we use a table, we always give it...

How to reset the root password of Mysql in Windows if you forget it

My machine environment: Windows 2008 R2 MySQL 5.6...

Build Maven projects faster in Docker

Table of contents I. Overview 2. Conventional mul...

Tomcat common exceptions and solution code examples

The company project was developed in Java and the...

Docker time zone issue and data migration issue

Latest solution: -v /usr/share/zoneinfo/Asia/Shan...

Parsing Apache Avro Data in One Article

Abstract: This article will demonstrate how to se...

Win7 installation MySQL 5.6 tutorial diagram

Table of contents 1. Download 2. Installation 3. ...

Explanation of MySQL performance inspection through show processlist command

The show processlist command is very useful. Some...