Andrey.Tarashevskiy

Results 142 comments of Andrey.Tarashevskiy

You wrote: `In real project all record have "_creator_id" field with reference to table "persons".` That's exactly what the query represents. If you'd like to have `persons_test.organization_id = organization.id` you...

Left join means "All records from Person table with optional records from Organization table". Exposed trying to resolve the reference from the Organization table to Persons and it's `creator` column....

Hi @cleonyc , all links lead to 404 pages

Should it be resolved/linked with columns by id/enum ordinal or by enum value?

Different mod/rem operations with EntityID columns are support since 0.41.1

```kotlin val query = Servers.innerJoin(User).innerJoin(Member). slice(Servers.columns). selectAll(). withDistinct() val servers = Server.wrapRows(query) ```

Do you create tables with Exposed or you use existing table? Can you share `CREATE TABLE` statement for your Locations db?

Do you have any SQLite specific parameters set to your connection?

Not yet as different dialects have their own trigger declaration syntax. Moreover, it's not obvious how to handle triggers modifications and verifications.

It's unsupported at the moment.