V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
mlboy
V2EX  ›  分享发现

一款 golang style 语法的 golang orm 库

  •  
  •   mlboy · 2020-04-28 17:47:31 +08:00 · 1338 次点击
    这是一个创建于 1430 天前的主题,其中的信息可能已经有所发展或是发生改变。

    最近开源了 gosql 一款 golang style 语法的 golang orm 库.

    https://github.com/rushteam/gosql

    优雅的语法,支持批量插入,轻松嵌套条件,处理各种复杂的查询 sql,诸如: and 和 or 组合 全语法支持: for update 锁,is null, exists 子查询等基本上所有 sql 语法

    求波关注,star

    风格如下:

    user := &UserModel{}
    err := db.Fetch(user, 
        gosql.Columns("id","name"),
        gosql.Where("id", 1),
        gosql.Where("[like]name", "j%")
        gosql.OrWhere(func(s *Clause) {
            s.Where("[>=]score", "90")
            s.Where("[<=]age", "100")
        }),
        GroupBy("type"),
        OrderBy("score DESC"),
    )
    

    特点

    • Golang-style SQL builder go 语言风格 sql 生成
    • Unlimited nesting query 查询条件无限嵌套
    • Reading and Writing Separation 读写分离
    • Delay connection creation 延迟创建连接
    • ORM maping to sturct ORM 映射结构体
    • Transactions 事务支持
    • Versatile 功能多样的
    • Clean Code 简洁的代码
    • Bulk Insert 支持批量插入

    仓库地址:

    https://github.com/rushteam/gosql

    更多详情可以看文档,更多细节可以看代码

    目前尚无回复
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   1367 人在线   最高记录 6543   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 36ms · UTC 23:34 · PVG 07:34 · LAX 16:34 · JFK 19:34
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.