F. Donnet
F. Donnet
I wanted to share my thoughts on the need for a new base theme for developers in Prestashop. Prestashop is an incredible and highly flexible e-commerce system. However, many themes...
Super good news. I converted a lot of things from docker compose to Aspire, just to see this option is not available yet :(. I even converted some ".EnsureCreated" for...
yes, you can try here: https://github.com/fdonnet/postgres_ef For the "UserRoleByTenant" model configured in "UserRoleByTenantConfiguration" it generates something like that ```sql CREATE INDEX IF NOT EXISTS ix_user_roles_by_tenants_role_id ON public.user_roles_by_tenants USING btree (role_id...
For the UserTenant model, it has another behavior. It generates: - one unique index on tenant_id - and one other unique index with the 2 fields "user_id" and "tenant_id" Fks....
Oh, big sry, really confused about that... I checked a lot of things before submitting the issue but I didn't even think to look at my configuration calls. Thx for...
Now that's .net9 is out and Swagger is not in the standard, I tried Scalar and it was so good, but yes, I cannot use it with my Yarp proxy....
It can be great for the panels too. To be able to set the size depending on the screens via a class and style breakpoints. If you use the panel...
I saw you added "Class" for the "API FluentDialog." That's great. If we have a way to remove the fixed base "width," either this way or with an additional configuration,...
I use `var p = new DynamicParameters();` to have my args at the top of the Sql string, and pass "p" in the dapper command. But yes, i will change...
> DynamicParameters is literally the worst option available; more expensive, and impossible to verify in an analyzer. I'd love to understand why you're using that option. If it is "because...