Jonathan Miller
Jonathan Miller
Looks like this is a problem with `.local` domains where the mDNS lookup is not leaking out to the DNS server
@joemcbride any ideas here? :)
I ended up switching away from the built in provider and rolled my own in order to work with Subscriptions and Queries / Mutations
@sungam3r it would be nice if there was a way that this was built-in, instead of having to roll-your-own auth...but no, I have moved on from this issue and done...
@roji - We're looking to use Partitions for efficient deletes using EF Core. Do you have any guidance on either 1) How this could be done using EF Core today...
@roji - Hmm manually editing the migrations file seems sketchy. I did some research and it doesn't look like you can alter a table to generate partitioning after it's created,...
> In general, there's no problem at all with editing migration files and adding raw SQL (or replacing existing directives) - the EF Core team explicitly encourages this where it...
@roji - I found a potentially better way that's simpler; I use table inheritance to create the master table using EF Core, then create inherited tables as necessary using raw...
I don't think a `DO INSTEAD` rule with a `WHERE` clause can have a `RETURNING` statement...I tried that and Postgres complained. Is there a way to ignore the `RETURNING` clause...
@roji - gotcha; yes, that is the issue I'm running into. I got around it by just doing a manual INSERT statement instead of using EF. The items I'm inserting...