Hubert Lin
Hubert Lin
Also had this issue, I implemented your fix and works fine now. (PetaPoco v5.1.289) I changed Line 681 - 686 of PetaPoco.Core.ttinclude to: ``` case "date": sysType= "DateTime"; break; case...
https://deno.land/x/nanoid is displaying the README.md of the latest tag `v3.0.0` ``` import nanoid from ... ``` But I see this is already fixed in the `master` branch Maybe bumping the...
Would it be wrong to recursively call `Connection.query(...)`? https://github.com/denodrivers/postgres/blob/8a07131efa17f4a6bcab86fd81407f149de93449/connection/connection.ts#L953-L959 ```diff } catch (e) { if (e instanceof ConnectionError) { await this.end(); + return await this.query(query); } throw e; } finally...
Seeing this with supabase 2.39.7 Reproduced with Chrome 121.0.6167.184 (Official Build) (64-bit) Reproduced with Safari 16.6 (18615.3.12.11.2) Unable to reproduce with Firefox 123.0 (64-bit). ```ts // login.tsx await supabase.auth.signInWithOAuth({ provider:...
> hey there, not sure if this is the right place, but Is there any way to set deno flags while starting supabase in local with `supabase start`?? > >...
I was able to filter on the child property by adding the `[UseFiltering]` attribute to the Entity. ```csharp public class Parent { [UseFiltering] public ICollection Children { get; set; }...