Re: hunt entity v2.1.0 released!

2019-01-09 Thread Soulsbane via Digitalmars-d-announce
On Wednesday, 9 January 2019 at 11:28:58 UTC, Brian wrote: Hunt Entity is an object-relational mapping (ORM) framework for dlang's database, support PostgreSQL / MySQL / SQLite. [...] Really cool! Thanks.

Re: hunt entity v2.1.0 released!

2019-01-09 Thread Brian via Digitalmars-d-announce
On Wednesday, 9 January 2019 at 14:12:06 UTC, Martin Tschierschke wrote: On Wednesday, 9 January 2019 at 11:34:07 UTC, Brian wrote: Fix example code: https://github.com/huntlabs/hunt-entity/wiki/Pagination Github repo: https://github.com/huntlabs/hunt-entity Is your work related to shark?

Re: hunt entity v2.1.0 released!

2019-01-09 Thread Martin Tschierschke via Digitalmars-d-announce
On Wednesday, 9 January 2019 at 11:34:07 UTC, Brian wrote: Fix example code: https://github.com/huntlabs/hunt-entity/wiki/Pagination Github repo: https://github.com/huntlabs/hunt-entity Is your work related to shark? https://code.dlang.org/packages/shark Regards mt.

Re: hunt entity v2.1.0 released!

2019-01-09 Thread Brian via Digitalmars-d-announce
Fix example code: https://github.com/huntlabs/hunt-entity/wiki/Pagination Github repo: https://github.com/huntlabs/hunt-entity

Re: [nvimhost-d] neovim/nvim plugins natively in D!

2019-01-09 Thread bauss via Digitalmars-d-announce
On Tuesday, 8 January 2019 at 21:29:51 UTC, viniarck wrote: Hi All, What if you could write natively high-performance nvim plugins in D? Which kind of plugins would you write? It turns out now you can. I've just released `nvimhost` v1.1.1, https://github.com/viniarck/nvimhost-d. I

hunt entity v2.1.0 released!

2019-01-09 Thread Brian via Digitalmars-d-announce
Hunt Entity is an object-relational mapping (ORM) framework for dlang's database, support PostgreSQL / MySQL / SQLite. This version added pagination for EQL's createQuery(); Example 1 for pagination: ```D class User { mixin MakeModel; @AutoIncrement @PrimaryKey int id;