Ujjwal Singhujjwal-ghatani-dev.hashnode.dev·Aug 31, 2024Understanding CQRS: Simplifying Your Code by Splitting ResponsibilitiesWhen building complex systems, managing the codebase can become challenging as your application grows. One common issue developers face is the blurring of responsibilities within classes, where both reading and modifying data are handled together. Th...Discuss#CQRS
Ujjwal Singhujjwal-ghatani-dev.hashnode.dev·Aug 23, 2024Understanding LaunchSettings.json in ASP.NET Core: A Comprehensive GuideIn the world of ASP.NET Core development, configuration plays a crucial role in ensuring that applications run smoothly across different environments. One of the key files that aid in this configuration is the launchSettings.json file. In this articl...Discuss·1 likeasp.net core
Kevin Millerkevinmiller.hashnode.dev·Nov 23, 2023.NET 7: The Future of Web DevelopmentAre you ready to dive into the next generation of web development with .NET 7? In this comprehensive blog post, we'll explore the latest features, advancements, and possibilities that .NET 7 brings to the table. From performance enhancements to cutti...Discussdotnet
Subash Khatrisubashkhatri.hashnode.dev·Aug 15, 2023A Beginner's Guide to Getting Started with Development Tools on Mac and LinuxDuring my ongoing studies, I have observed that some of my colleagues are encountering challenges while familiarizing themselves with the tools that are integral to our weekly explorations of new architectural paradigms, design patterns, and structur...Discuss·49 readsdotnet7
The One Technologiestheonetechnologies.hashnode.dev·Feb 22, 2023What's new in .NET 7.NET 7 is the latest version of the .NET framework, released in November 2022. It brings several new features and improvements over previous versions, including: Cross-platform support for Windows, Linux & macOS Cross-platform support in .NET 7 means...Discuss·44 readsdotnet
Hammad Maqboolhammadorbit.hashnode.dev·Feb 8, 2023Interface class in C#.NETWhenever I tried to learn about what is Interface class the only answer I found was - Interface class is the contract between the parent and its child class where the parent is the interface class and its child class makes a promise to its parent tha...Discuss·1 like·120 reads.NET Talks ❤️C#
John McArthurbigbadjock.hashnode.dev·Jan 13, 2023DotNet7 connecting to SQL ServerI have a little sample app, that uses my generic repository library. I've recently upgraded both to DotNet7 [.Net7] and immediately hit an issue. I was getting the error: A connection was successfully established with the server, but then an error o...Discuss·1 likeC#
Jinalkumar Pateljinalkumarpatel.hashnode.dev·Jan 1, 2023Breaking Change To DbTransactionInterceptor Behavior In Entity Framework Core 7.0Entity Framework Core or EFCore has an interceptor for various behavior and one such interceptor is DbTransactionInterceptor. This is a abstract class and to add custom functionality it can be inherited and extended as per application need. EF Core 7...Discuss·165 readsentity framework
Joshua Stewardconcurrentflows.com·Dec 1, 2022C# 11 List PatternsC# and Pattern Matching With each latest iteration of C#, we see more and more pattern matching. Frankly, I'm deeply excited to see this evolution. C# of course can still be considered an Object Oriented language but MS has taken the Multi-modal moni...Discuss·4 likes·152 readslist patterns