darko1979
darko1979
I have a use case where recently added SqlRow feature #3339 fits perfectly but there is an issue that I managed to solve but I'm not really satisfied with the...
I have a solution with multiple projects: MainApp, Common and Service (Common is a library shared by MainApp and Service). ConnectionString is located in web.config in Service project. I wanted...
When PostgreSQL database has an extension all functions and types from that extensions are shown together with user functions/types in navigator. This is not a problem for extensions with few...
I have a situation that is illustrated by following example: ```sql CREATE TABLE IF NOT EXISTS "item" ( id INT NOT NULL, code VARCHAR(100) NOT NULL, CONSTRAINT pk_item PRIMARY KEY...
Tried upgrading linq2db from 5.2.2 to 5.3.2 and instead of this: ```sql SELECT x.public_id, x.name, x.settings->>'service' FROM "public".gateway x ``` started getting this: ```sql SELECT x.public_id, x.name, x."settings->>'service'" FROM "public".gateway...
I had this issue in earlier builds also, when I try to start the pgmodeler.exe and it just does not start. After many retries it finally starts. In windows event...
This error happens if I use a type in a table that has been created after table, and then save the model without verification and fixing the order of object...
Using latest v1.0.0-beta1 I found two issues with diff: - enum changes not detected when enum values should be removed - no changes detected when changing index to unique Here...
Because I'm working on multiple projects I often need to switch from projects on svn to projects on git. I'm having this problem for some time now when I close...
I have a use case where enum array column would be perfect. Select works without problems but I'm unable to perform insert or update. Here is a sample schema: ```...