How To
Dapper vs Entity framework
By Tan Lee Published on Dec 09, 2024 250
This article explains the key differences between Dapper and Entity Framework (EF) to help you decide which Object-Relational Mapper (ORM) is suitable for your next project.
How to Change Google Chrome User Agent in Selenium with C#
By Tan Lee Published on Dec 09, 2024 271
To change the user agent in Google Chrome when using Selenium in C#, you'll need to use the ChromeOptions class to set the custom user agent string, and then pass those options when launching the Chrome browser.
Can Websites Detect When You're Using Selenium with ChromeDriver
By Tan Lee Published on Dec 09, 2024 335
Selenium detection works by testing for specific JavaScript variables that appear when running with Selenium.
How to Create a PDF from a RDLC Report in C#
By Tan Lee Published on Feb 16, 2024 1.51K
To save an RDLC (Report Definition Language Client-side) report to a PDF file in C#, you can follow step.
How to set Filter Criteria with multi conditions in C#
By Tan Lee Published on Dec 06, 2024 421
To set multi-condition filter criteria in a DevExpress GridControl in C#, you can use the ColumnView.ActiveFilterCriteria property, which allows you to specify complex filter conditions by combining multiple conditions using logical operators like AND, OR.
How to Specify the Port for Hosting an ASP.NET Core Application
By Tan Lee Published on Dec 05, 2024 595
To specify the port for hosting an ASP.NET Core application, you can configure it in several ways.
How to Implement File Upload in ASP.NET MVC
By Tan Lee Published on Dec 05, 2024 165
To implement file upload in ASP.NET MVC, follow these steps.
Connection string odbc
By Tan Lee Published on Oct 08, 2024 378
An ODBC connection string is used to specify the parameters required to connect to a database via ODBC drivers.
How to mark a method as obsolete or deprecated in C#
By Tan Lee Published on Dec 04, 2024 405
In C#, you can mark a method as obsolete or deprecated using the [Obsolete] attribute.
If else condition in sql server
By Tan Lee Published on Dec 03, 2024 307
In SQL Server, the IF ELSE statement is used to execute one block of SQL code if a condition is true, and another block of code if the condition is false.
How to Convert DateTime to UNIX Timestamp in Python
By Tan Lee Published on Dec 03, 2024 600
The Unix timestamp is a single signed integer representing the number of seconds elapsed since January 1, 1970, making it useful for computers to store and manage date systems. It can be converted into a human-readable format.
How to Call the Base Constructor in C#
By Tan Lee Published on Dec 02, 2024 373
In C#, you can call a base class constructor from a derived class using the base keyword.