Files
gocqlx/table
Maciej Zimnoch 564db08698 table: Added shortcuts to Queryx
These shortucuts allows to write shorter more straightforward code.
It allows to write:

```
clusters.InsertQuery(session).BindStruct(r).ExecRelease()
```

instead of:

```
tmt, names := clusters.Insert()
session.Query(stmt,names).BindStruct(r).ExecRelease()
```
2020-06-17 16:44:48 +02:00
..
2018-11-14 17:09:03 +01:00
2020-04-29 10:54:39 +02:00
2020-06-17 16:44:48 +02:00