Add release badge.
This commit is contained in:
parent
05311b8129
commit
7fd85eed0b
1 changed files with 5 additions and 3 deletions
|
|
@ -1,9 +1,11 @@
|
|||
# Jet
|
||||
|
||||
[](https://circleci.com/gh/go-jet/jet/tree/develop)
|
||||
[](https://codecov.io/gh/go-jet/jet)
|
||||
[](https://goreportcard.com/report/github.com/go-jet/jet)
|
||||
[](http://godoc.org/github.com/go-jet/jet)
|
||||
[](https://codecov.io/gh/go-jet/jet)
|
||||
[](https://circleci.com/gh/go-jet/jet/tree/develop)
|
||||

|
||||
|
||||
|
||||
Jet is a framework for writing type-safe SQL queries for PostgreSQL in Go, with ability to easily
|
||||
convert database query result to desired arbitrary structure.
|
||||
|
|
@ -258,7 +260,7 @@ above statement. Usually this is the most complex and tedious work, but with Jet
|
|||
First we have to create desired structure to store query result set.
|
||||
This is done be combining autogenerated model types or it can be done manually(see [wiki](https://github.com/go-jet/jet/wiki/Scan-to-arbitrary-destination) for more information).
|
||||
|
||||
Let's say this is our desired structure, created by combining auto-generated model types:
|
||||
Let's say this is our desired structure:
|
||||
```go
|
||||
var dest []struct {
|
||||
model.Actor
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue