Hi. I have an existing Laravel application that I would like to eventually migrate to ASP.NET, but there are a few things holding me back. My application consists of an API a...
Hello. I'm experiencing a strange issue with Go templates. I have two base layouts base.tmpl and auth.tmpl I have pages that "extend" these layouts. E.g index.tmpl extends ba...
Hello, I've been looking for a seeding solution for Doctrine (without Symfony), and I stumbled into data-fixtures. However, it isn't working quite as I imagined, and the only...
I'm undergoing an issue where my PhpStorm hangs when preparing workspace or scanning files to index. I recently updated from 2020.2.2 - which was working properly - to 2020.2...
Hi everyone. I'm having trouble with EF Core in ASP.NET Core 3. I have some login code where I first check for a user's existence with: _context.Users.Any(user => user.Email....
How do I pass a parameter into a PHP-DI dependency? I have something like this: routes.php $app->get('/', Action::class)->add(Middleware::class); Middleware.php: ... pub...
Hi, I have a question on something that I'm not sure is possible. I'm developing a Blazor PWA on .NET 5 RC2 and I'd like users to be able to open a map and pick a location. ...
Hello, I have a string stored in SQL db, e.g "a string with oneKeyword twoKeyword". I'm trying to compose an SQL query that can check whether the string contains any of an...
Hello, does anyone have a link to any packages that I can use to implement timestamped columns (created_at, updated_at) and soft deletes in EF Core? I have found some tutoria...
I'm trying to set up Symfony Serializer to serialize Doctrine entities to json outside a Symfony project. My initial attempt gave me an error stating that circular references...
Question #3 I have a Blazor webassembly app which authenticates via an API. On successfully Auth, the API returns a JWT access token (expiry 20 minutes) and a refresh token (...
Good day. I screwed up somewhat with git. I have an orphan branch with commits, and GitHub won't let me create a pull request because it does not share a commit history with m...
Is there a built in function that resolves a Generator into an array? Example, given: function gen() : Generator { yield 1; yield 2; yield 3; } I'm looking for ...
Is there any way to make a NavLink or MudNavLink submit a post instead of a get? Or do I have to just create a hidden form.
Hi guys, I have a very specific JavaScript problem. Now, I have a small offline-first site I've been building with jQuery and UpUp. Everything works perfect offline, apart fro...
Can anyone point me to a Carbon mapping for doctrine? I've tried making my own with reference to the docs, but I worry that it might not cover everything.
I have a somewhat open-ended question. Is there any ongoing or possible future work on a legitimately good native GUI toolkit for Go? Most of what I've seen so far is hosted E...
Is there any way I can set up PHP-DI to return typed repositories?
Anyone that can direct me to a group where I can get help with SignalR?
Using HttpClient, is there a way to throw a relevant exception if a 4xx/5xx status code is returned? Similar to the way Flurl does it.