search
HomeWeb Front-endJS TutorialAn idea to implement ORM using Node.js
An idea to implement ORM using Node.jsJan 03, 2018 pm 01:52 PM
javascriptnode.jsIdeas

ORM is a mapping of O and R. O stands for object-oriented and R stands for relational database. The two have similarities but also have their own characteristics. It is because of this right and wrong situation that mapping is needed. This article mainly introduces a detailed explanation (pictures and text) of an idea of ​​using Node.js to implement ORM. Friends in need can refer to it. I hope it can help everyone.

The ideal situation is to design the database according to the characteristics of the relational database (including business requirements). At the same time, the model (entity class) is designed according to the characteristics of object-oriented (including business requirements). Then think about how to do the mapping. But the ideal is very skinny, and the reality is too rich and full.

I haven’t seen any ORM do this, and I haven’t seen any experts design it this way. So what does the actual situation look like? Take .net's Entity Framework as an example.

 DB frist is to design the database first, and then automatically create entity classes based on the tables, primary and foreign keys, etc. in the library. Then it can be operated through LinQToSQL. The entity class created in this way obviously lacks object-oriented features.

Code frist is to design the entity class first, and then automatically create tables, primary and foreign keys, constraints, etc. based on the entity class and characteristics. For the sake of rigor, when defining entity classes, you need to explain things with relational characteristics such as primary and foreign keys.

As shown below

Now I want to use node to make an engine. I have just come into contact with node. I guess there are ready-made ORMs. I don’t know how they do it. I will ignore them for now and clarify my own ideas first. Yes.

Why should you choose node? I thought it natively supports json. Json is the home field at the front end. js natively supports json, and all operations are very smooth and comfortable. But json is in trouble when it reaches the backend (C#). C# does not natively support json and can only be used as a string or entity class serialization. This requires moving around, which is very troublesome.

Using node, the backend can also be encoded in js, which means that json will be natively supported. This is much more comfortable. Think about it, the front end creates json (entity class), and then submits the entire thing to the back end. The back end receives the json and processes it directly (security verification, business processing), and then directly persists it. Isn’t it great!

Another advantage of using node is that it can define attributes of entity classes at runtime, such as adding attributes. This is not possible in C#.

Why must the entity class be modified at runtime? Because this can avoid the explosion in the number of entity classes.

Open your project and count how many entity classes are defined? Does the larger the project, the more entity classes there are? When the needs change and an attribute needs to be added to the entity class, do I need to change the code in various ways? Although VS can help us do a lot of work.

Therefore, it is better to modify the entity class at will during runtime, which can greatly avoid the problem of modifying the code. (Because there is no code at all)

This article is mainly about ideas, so I will simply design a json to express it.

The purpose of designing this json is that the engine can splice it into SQL according to the json situation, and then hand it over to the database for processing.

{
 "operationMode":"add",// add\update\delete\select
 "tableCount":1, //支持多表的级联添加、修改
 "fieldInfo":[{//主表的字段,参与操作的字段,不参与的不用写。第一个字段是主键(不支持多主键)
 "tableName": "t1", //表名。
 "primaryKey":"id",//主键字段名。我不想把主键字段名限制为必须是“ID”
 "_sqlCache": "" ,//缓存的sql语句,每次都拼接sql也挺烦的,弄个缓存存放拼接好的sql。
 "fieldList":{ //涉及到的字段,并不需要把表里的字段都放进来,根据业务需求设计
   //客户端提交的json与之对应
 "field1Name":"field1Value",
 "field2Name":"field2Value"
 }
 },
 { //从表的字段,可以不设置
 "primaryKey": "id", //主键字段名。我不想把主键字段名限制为必须是“ID”
 "foreignKey": "foreignKeyid", //主键字段名。我不想把主键字段名限制为必须是“ID”
 "_sqlCache": "", //缓存的sql语句,每次都拼接sql也挺烦的,弄个缓存存放拼接好的sql。
 "fieldList": { //涉及到的字段(不含外键字段),并不需要把表里的字段都放进来,根据业务需求设计
   //客户端提交的json与之对应
 "field1Name": "field1Value",
 "field2Name": "field2Value"
 }
 } // 从表的字段,参与操作的字段,不参与的不用写。第一个字段是主键,第二个字段是外键
 ],
 "findCol":[{
 "colName":"col1",
 "key1":"abc",
 "key2":"abc", //范围查询时使用,比如从几号到几号
 "findKind":" {colName} like {key}" //查询方式:like、not Like、in、=、between等
 }]
}

General ORM takes entity classes as the core and requires the integrity of entity classes. That is to say, an entity class must be mapped to a complete table. For example, if you want to remove a product from the shelves, the general approach is to first read the product from the database and instantiate it, then modify the tag attributes (fields), and then persist the entire entity class (save it to the database).

But how to write SQL? Just an update is enough, there is no need to read the data, so the efficiency will be somewhat lost.

So what if you want to remove all products in a category? You need to get rid of all the products in this category, then change the attribute values ​​in batches, and persist them in batches.

What if you write a SQL statement? It’s still the same SQL, but the query conditions are changed, and there is still no need to mess with the data. In this case, the difference in efficiency is huge.

And my idea is not based on object-oriented, but on relational database.

That means that entity classes and tables will not be mapped as a whole, but attributes and fields will be mapped. That is to say, take some fields from a table, make them into an entity class, and then perform operations. For example, the example of removing products from the shelves

table: product table

field: isxiajia = 1

condition: id=1 (single product removed from the shelves) cate=2 (according to classification Removed)

Then generate the update statement.

This is an independent "entity class". This class does not require other attributes of the product because it is just a removal operation. In addition, the query conditions are also completely liberalized. Instead of just querying based on ID, you can also query based on other fields, such as classification fields. In this way, efficiency can be improved.

Related recommendations:

The url-pattern setting method and mapping rules of servlet and filter

Introduction to PHP object-oriented identity mapping

Introduction to ORM mapping using annotations

The above is the detailed content of An idea to implement ORM using Node.js. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
es6数组怎么去掉重复并且重新排序es6数组怎么去掉重复并且重新排序May 05, 2022 pm 07:08 PM

去掉重复并排序的方法:1、使用“Array.from(new Set(arr))”或者“[…new Set(arr)]”语句,去掉数组中的重复元素,返回去重后的新数组;2、利用sort()对去重数组进行排序,语法“去重数组.sort()”。

JavaScript的Symbol类型、隐藏属性及全局注册表详解JavaScript的Symbol类型、隐藏属性及全局注册表详解Jun 02, 2022 am 11:50 AM

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于Symbol类型、隐藏属性及全局注册表的相关问题,包括了Symbol类型的描述、Symbol不会隐式转字符串等问题,下面一起来看一下,希望对大家有帮助。

原来利用纯CSS也能实现文字轮播与图片轮播!原来利用纯CSS也能实现文字轮播与图片轮播!Jun 10, 2022 pm 01:00 PM

怎么制作文字轮播与图片轮播?大家第一想到的是不是利用js,其实利用纯CSS也能实现文字轮播与图片轮播,下面来看看实现方法,希望对大家有所帮助!

JavaScript对象的构造函数和new操作符(实例详解)JavaScript对象的构造函数和new操作符(实例详解)May 10, 2022 pm 06:16 PM

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于对象的构造函数和new操作符,构造函数是所有对象的成员方法中,最早被调用的那个,下面一起来看一下吧,希望对大家有帮助。

JavaScript面向对象详细解析之属性描述符JavaScript面向对象详细解析之属性描述符May 27, 2022 pm 05:29 PM

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于面向对象的相关问题,包括了属性描述符、数据描述符、存取描述符等等内容,下面一起来看一下,希望对大家有帮助。

javascript怎么移除元素点击事件javascript怎么移除元素点击事件Apr 11, 2022 pm 04:51 PM

方法:1、利用“点击元素对象.unbind("click");”方法,该方法可以移除被选元素的事件处理程序;2、利用“点击元素对象.off("click");”方法,该方法可以移除通过on()方法添加的事件处理程序。

整理总结JavaScript常见的BOM操作整理总结JavaScript常见的BOM操作Jun 01, 2022 am 11:43 AM

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于BOM操作的相关问题,包括了window对象的常见事件、JavaScript执行机制等等相关内容,下面一起来看一下,希望对大家有帮助。

20+道必知必会的Vue面试题(附答案解析)20+道必知必会的Vue面试题(附答案解析)Apr 06, 2021 am 09:41 AM

本篇文章整理了20+Vue面试题分享给大家,同时附上答案解析。有一定的参考价值,有需要的朋友可以参考一下,希望对大家有所帮助。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version