Bug And Fixbugandfix.com·Sep 5, 2023Occurrence Count of each character in a string in C# - Interview questionCounting the occurrence of each character in a string is a common job interview question, and it assesses your ability to manipulate strings and data structures. https://youtu.be/1ku2X88T_vsDiscuss·46 readsdotnet
Bug And Fixbugandfix.com·Sep 4, 2023Delete in EF 8 !Deleting a record efficiently using Entity Framework (EF) involves a few key considerations to minimize unnecessary database operations and improve performance. https://youtu.be/gt2PUWa340I public async void DeleteStudent(int Id) { UniverSi...Discuss·200 readsefcore
Bug And Fixbugandfix.com·Sep 3, 2023EF8, Raw SQL, but Dapper is FASTER !!!Dapper and Entity Framework (EF) are two different Object-Relational Mapping (ORM) libraries for .NET, and their performance characteristics can vary depending on the specific use case and how they are used. It's important to note that the performanc...Discuss·550 readsefcore
Bug And Fixbugandfix.com·Sep 3, 2023High Performance C# - Span<T>Span<T> is a valuable feature introduced in C# 7.2 (and further improved in later versions) as part of the "Span of T" family of types. It is primarily used for efficiently working with sequences of data in a contiguous block of memory, without the n...Discuss·32 readsASP.NET
Bug And Fixbugandfix.com·Sep 1, 2023Parallelism AntipatternsParallelism antipatterns are common mistakes or practices that should be avoided when designing and implementing parallel or concurrent code. Parallelism is the use of multiple threads or processes to execute tasks concurrently, and when not done cor...Discuss·41 readsASP.NET