将json转换为MySql语句

将json转换为MySql语句

例如下面的一段json:

{
  "Entity": {
    "Main": {
      "note_details": true
    }
  },
  "Condition": {
    "Equ": {
      "note_details": {
        "title": "hello,world."
      }
    }
  }
}

转换为MySql语句如下:

SELECT `note_details`.`id`,`note_details`.`title`,`note_details`.`content`,`note_details`.`weather`,`note_details`.`create_time`,`note_details`.`update_time`,`note_details`.`modified_time`,`note_details`.`valid` FROM   `note_details`    WHERE  `note_details`.`title` = 'hello,world.' 

使用C#转换

var jsonEntity = new JsonEntityToSql("server=127.0.0.1;user id=root;password=123456;persistsecurityinfo=True;database=one_note");

var sql = jsonEntity.Json2SelectSql("{\"Entity\":{\"Main\":{\"note_details\":true}},\"Condition\":{\"Equ\":{\"note_details\":{\"title\":\"hello,world.\"}}}}");

一、SQL操作符对应的JSON变量:

SQL的关键字 JSON对应的变量
= Equ
<> NotEqu
> Greater
< Less
>= GreaterEqu
<= LessEqu
BETWEEN AND Between
NOT BETWEEN AND NotBetween
LIKE Like
NOT LIKE NotLike
AND And
OR Or
() Block
ORDER BY Order
INNER JOIN Link
LIMIT Limit
LEFT JOIN LinkLeft
RIGHT JOIN LinkRight

支持连表等高级语法,由于工作时间的缘故,目前还没有时间,更复杂的JSON转SQL文档,以后有时间会发布出来。

github开源代码

你可能感兴趣的:(将json转换为MySql语句)