How To

How to Download Crystal Reports for Visual Studio 2022
By Tan Lee Published on Jun 11, 2024 4.43K

To download Crystal Reports for Visual Studio 2022, follow these steps.

How to check net framework version
By Tan Lee Published on Jan 20, 2025 271

To check the .NET Framework version installed on a Windows machine, you can use several methods depending on your preference.

Left Join in C# LINQ
By Tan Lee Published on Jan 20, 2025 138

A Left Join in C# LINQ is used to combine two data sources based on a common key, ensuring that every element in the first (left) data source is included in the result set, even if there is no corresponding element in the second (right) data source.

Inner Join in C# LINQ
By Tan Lee Published on Jan 20, 2025 152

An inner join in C# LINQ allows you to create a result set by combining elements from two collections where a matching key exists.

Group By in C# LINQ
By Tan Lee Published on Jan 20, 2025 137

In C#, LINQ's Group By is a query operator that allows you to organize elements of a sequence into groups based on a specified key selector function.

How to use custom attributes in C#
By Tan Lee Published on Jan 18, 2025 322

Attributes are used to attach additional metadata to classes, methods, properties, or other program elements.

How to Set Connection Timeout for TcpClient in C#
By Tan Lee Published on Jan 18, 2025 742

In C#, the TcpClient class doesn't directly provide a way to set a connection timeout.

Monitor data changes with SQL Server query notifications
By Tan Lee Published on Jan 18, 2025 443

You can use SQL Server query notifications to trigger push notifications in your application whenever there's a change in the database.

Advanced Dapper Features in C#
By Tan Lee Published on Dec 31, 2024 568

Dapper is a high-performance Object-Relational Mapping (ORM) tool designed for .NET developers, offering fast, lightweight, and efficient data access.

Format Numbers to 2 Decimals in C# with Dapper
By Tan Lee Published on Jan 09, 2025 273

If you encounter an issue when inserting numeric data into a SQL database using Dapper.

How to Trim String Values in C# with Dapper
By Tan Lee Published on Jan 10, 2025 377

When working with Dapper to call a stored procedure, I encountered an issue where the strings returned from the stored procedure were not trimmed.

Insert records with Dapper in C#
By Tan Lee Published on Jan 18, 2025 392

You can easily insert records using Dapper by executing an INSERT statement along with a model object.