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:
|
<<: Complete steps to configure basic user authentication at the Nginx level
>>: MySQL 8.0.11 Installation Tutorial under Windows
Arrange by functionNN : Indicates which earlier ve...
This article example shares the specific code of ...
Remote connection to MySQL fails, there may be th...
JDK download address: http://www.oracle.com/techn...
html <!DOCTYPE html> <html lang="en...
Install Docker You have to install Docker, no fur...
This article mainly introduces the implementation...
Generally, when we use a table, we always give it...
My machine environment: Windows 2008 R2 MySQL 5.6...
Table of contents I. Overview 2. Conventional mul...
The company project was developed in Java and the...
Latest solution: -v /usr/share/zoneinfo/Asia/Shan...
Abstract: This article will demonstrate how to se...
Table of contents 1. Download 2. Installation 3. ...
The show processlist command is very useful. Some...