Skip to main content
Tag

Visual Studio

All blogs tagged with Visual Studio

13
Articles
137,655
Total Views

Showing 13 of 13 articles

31
May
2023
Getting Started with LINQ Queries in Entity Framework
3,858 views

LINQ (Language Integrated Query) is a powerful tool in .NET that provides a unified way to query data from various data sources. When working with databases, LINQ can be used in conjunction with Entity Framework, a popular Object-Relational Mapping (ORM) framework, to simplify the process of mapping data to objects and querying the database.

10
Sep
2020
Implement Stripe Payment Gateway In ASP.NET
58,672 views

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

Translate Page