LINQ (Language Integrated Query) is a feature in C# that allows us to perform queries against data sources, which can be arrays, collections, or any type of databases, using a SQL-like syntax. In this article, we will cover some basic concepts and functionalitites of LINQ and learn how to use it in your C# application
Tag
dotnet framework
All blogs tagged with dotnet framework
2
Articles
62,207
Total Views
Showing 2 of 2 articles
09
Dec
2023
Mastering LINQ in C#: A Complete Guide with Examples
10
Sep
2020
Implement Stripe Payment Gateway In ASP.NET
This tutorial demonstrates how to accept payments with Stripe Checkout in an ASP.NET application built with C# and Web Forms. The application uses Checkout to accept credit cards from the end user and send tokens to a back-end API. The back-end controller uses the Stripe .NET library to create a charge. There are four steps: Create the project and configure dependencies Create the payment Web Form Create a page to perform the charge Run the application