- New LINQ methods in C# 13: Index, CountBy, AggregateBy https://timdeschryver.dev/blog/new-linq-methods-in-c-13-index-countby-aggregateby 7 comments dotnet
- Bringing the power of Signals to Angular Forms with Signal Forms https://timdeschryver.dev/blog/bringing-the-power-of-signals-to-angular-forms-with-signal-forms 3 comments angular2
- Using Zod's schema to render a reusable and dynamic Angular table component https://timdeschryver.dev/blog/using-zods-schema-to-render-a-reusable-and-dynamic-angular-table-component 2 comments angular
- Unpopular opinon: Eliminating unnecessary layers https://timdeschryver.dev/blog/treat-your-net-minimal-api-endpoint-as-the-application-layer 12 comments dotnet
- Entity framework features I wish I knew earlier https://timdeschryver.dev/blog/entity-framework-features-i-wish-i-knew-earlier 30 comments dotnet
- Refactor your dotNET HTTP Clients to Typed HTTP Clients https://timdeschryver.dev/blog/refactor-your-net-http-clients-to-typed-http-clients 47 comments dotnet
- Fixing Angular Standalone Components that have a circular dependency https://timdeschryver.dev/blog/fixing-angular-standalone-components-that-have-a-circular-dependency 6 comments angular2
- You can now return unmapped types from raw SQL select statements with Entity Framework 8 https://timdeschryver.dev/blog/you-can-now-return-unmapped-types-from-raw-sql-select-statements-with-entity-framework-8 8 comments dotnet
- Tried The Angular Standalone migration, and here is the result https://timdeschryver.dev/blog/i-tried-the-angular-standalone-migration-and-here-is-the-result 8 comments angular2
- Assertion Scopes, the one FluentAssertions feature you didn't know you needed https://timdeschryver.dev/blog/assertion-scopes-the-one-fluentassertions-feature-you-didnt-know-you-needed 6 comments dotnet
- You should take advantage of the improved NgRx APIs https://timdeschryver.dev/blog/you-should-take-advantage-of-the-improved-ngrx-apis 3 comments angular2
- New in Entity Framework 7: Bulk Operations with ExecuteDelete and ExecuteUpdate https://timdeschryver.dev/blog/new-in-entity-framework-7-bulk-operations-with-executedelete-and-executeupdate 14 comments csharp
- New in Entity Framework 7: Bulk Operations with ExecuteDelete and ExecuteUpdate https://timdeschryver.dev/blog/new-in-entity-framework-7-bulk-operations-with-executedelete-and-executeupdate 22 comments dotnet
- Why we should verify HTTP response bodies, and why we should use zod for this https://timdeschryver.dev/blog/why-we-should-verify-http-response-bodies-and-why-we-should-use-zod-for-this 8 comments angular2
- Feature Flags in .NET, from simple to more advanced https://timdeschryver.dev/blog/feature-flags-in-net-from-simple-to-more-advanced 26 comments csharp
- Feature Flags in .NET, from simple to more advanced https://timdeschryver.dev/blog/feature-flags-in-net-from-simple-to-more-advanced 5 comments dotnet
- Tye, starting and running multiple APIs with a single command https://timdeschryver.dev/blog/tye-starting-and-running-multiple-apis-with-a-single-command 5 comments dotnet
- Proof of concept: ngx-query-state https://timdeschryver.dev/blog/proof-of-concept-ngx-query-state/ 11 comments angular2
- Trying out OData for the first time https://timdeschryver.dev/blog/trying-out-odata-for-the-first-time 14 comments dotnet
- Use Angular directives to extend components that you don't own https://timdeschryver.dev/blog/use-angular-directives-to-extend-components-that-you-dont-own 9 comments angular2
- TIL params inheritance strategy to always have access to parent route info https://timdeschryver.dev/blog/til-paramsinheritancestrategy-to-always-have-access-to-parent-route-info 4 comments angular2
- Testing an NgRx project https://timdeschryver.dev/blog/testing-an-ngrx-project 4 comments angular2
- Can't make environment variables work in SvelteKit with docker-compose https://timdeschryver.dev/blog/environment-variables-with-sveltekit#the-workaround 14 comments sveltejs
- The simplicity of .NET Endpoints https://timdeschryver.dev/blog/the-simplicity-of-net-endpoints 115 comments dotnet
- Maybe it's time to rethink our project structure with .NET 6 https://timdeschryver.dev/blog/maybe-its-time-to-rethink-our-project-structure-with-dot-net-6 40 comments csharp
- Maybe it's time to rethink our project structure with .NET 6 https://timdeschryver.dev/blog/maybe-its-time-to-rethink-our-project-structure-with-dot-net-6 63 comments dotnet
- Solving Angular slow renders with NgRx selectors https://timdeschryver.dev/blog/solving-angular-slow-renders-with-ngrx-selectors 3 comments angular2
- Prevent a .NET API from adding cache headers to unsuccessful requests https://timdeschryver.dev/blog/prevent-a-net-api-from-adding-cache-headers-to-unsuccessful-requests 3 comments dotnet
- Why I stopped worrying about test setups by using AutoFixture https://timdeschryver.dev/blog/why-i-stopped-worrying-about-test-setups-by-using-autofixture 18 comments dotnet
- A practical guide to Angular Template-Driven Forms https://timdeschryver.dev/blog/a-practical-guide-to-angular-template-driven-forms 5 comments angular2
- A generic Angular template-driven validator https://timdeschryver.dev/blog/a-generic-angular-template-driven-validator 2 comments angular
- A new way to validate Angular Forms https://timdeschryver.dev/blog/a-new-way-to-validate-angular-forms 4 comments angular2
- Finding that C# memory leak https://timdeschryver.dev/blog/finding-that-csharp-memory-leak 54 comments csharp
- Why writing integration tests on a C# API is a productivity booster https://timdeschryver.dev/blog/why-writing-integration-tests-on-a-csharp-api-is-a-productivity-booster 18 comments csharp
- How to test your C# Web API https://timdeschryver.dev/blog/how-to-test-your-csharp-web-api 22 comments csharp
- Make your csharp applications faster with LINQ joins https://timdeschryver.dev/blog/make-your-csharp-applications-faster-with-linq-joins 7 comments dotnet
- Make your csharp applications faster with LINQ joins https://timdeschryver.dev/blog/make-your-csharp-applications-faster-with-linq-joins 34 comments csharp
- Flagged enum, why and how https://timdeschryver.dev/blog/flagged-enum-what-why-and-how 10 comments typescript
- Destructure an object to remove a property https://timdeschryver.dev/snippets/destructure-an-object-to-remove-a-property 31 comments javascript
- How to test Svelte components https://timdeschryver.dev/blog/how-to-test-svelte-components 9 comments sveltejs