Facebook 开源 Golang 实体框架 Ent 现已支持 TiDB
原文作者:Amit Shani,Ent Engineer
对于后端开发者来说,一款好用的框架能够大大提升应用的开发效率。为了降低开发者使用 TiDB 的门槛,方便开发者快速连接到 TiDB,我们也在和合作伙伴一起,逐步完善面向主流开发语言和框架的连接支持。
Hello World 应用示例
docker run -p 4000:4000 pingcap/tidb
git clone https://github.com/hedwigz/tidb-hello-world.git
go title="ent/schema/user.go"
func (User) Fields() []ent.Field {
return []ent.Field{
field.Time("created_at").
Default(time.Now),
field.String("name"),
field.Int("age"),
}
}
go title="main.go"
client, err := ent.Open("mysql", "root@tcp(localhost:4000)/test?parseTime=true")
if err != nil {
log.Fatalf("failed opening connection to TiDB: %v", err)
}
defer client.Close()
// Run the auto migration tool, with Atlas.
if err := client.Schema.Create(context.Background(), schema.WithAtlas(true)); err != nil {
log.Fatalf("failed printing schema changes: %v", err)
}
go title="main.go"
client.User.Create().
SetAge(30).
SetName("hedwigz").
SaveX(context.Background())
user := client.User.Query().FirstX(context.Background())
fmt.Printf("the user: %s is %d years old\n", user.Name, user.Age)
$ go run main.go
the user: hedwigz is 30 years old
版本说明
关注公众号:拾黑(shiheibook)了解更多
[广告]赞助链接:
四季很好,只要有你,文娱排行榜:https://www.yaopaiming.com/
让资讯触达的更精准有趣:https://www.0xu.cn/

随时掌握互联网精彩
赞助链接
排名
热点
搜索指数
- 1 不忘来时路 7974735
- 2 16亿美元的反华宣传被甲亢哥干翻了 7955153
- 3 今年清明为何是4月4日 7887157
- 4 这些道路用烈士的名字命名 7771090
- 5 尹锡悦被罢免总统职务 7676094
- 6 哈尔滨市公安局回应美网络攻击 7573051
- 7 关税重压下苹果手机或成奢侈品 7435114
- 8 53岁“最帅康熙”考公上岸?本人回应 7316483
- 9 叶童怼房琪:你真的有问题 7293359
- 10 清明节你最思念谁 7123768