boutique replica bags up ideas

the best replique rolex and prices here.

julia highlight 99j hair color 10a quality straight human hair lace front wigs 8 - 24 inches pre plucked hairline 13x4 inches lace front brazilian wig onlinefor sale

C#: LINQ to SQL

Updated on     Kisan Patel

LINQ to SQL is a component of .Net Framework, and is specifically designed for working with SQL Server database. It provides a run-time infrastructure for managing relational data as objects.

It allows you to write queries to retrieve and manipulate data from the SQL Server. Using LINQ to SQL, you can retrieve the data from the database, insert, update and delete rows from the table.

LINQ to SQL also supports transactions, views and stored procedures. It also provides an easy way to integrate data validation and business logic rules into your data model.

LINQ to SQL is an object-relational mapping (ORM) framework that allows the direct one-to-one mapping of a microsoft SQL Server database to .Net classes. Using LINQ to SQL ORM mapping, the classes that match the database table are created automatically from the database itself and you can start using the classes immediately.

Let’s take one example, LINQ to SQL, in which you can work with LINQ to SQL.

Here, we will create console application named “LINQtoSQLDemo”.

linq-to-sql-first

Now, Right-click the Solution name in Solution Explorer and select the Add New Item option from the context menu. This opens the Add New Item dialog box.

In this dialog box, select the LINQ to SQL Classes template named as “NorthwindClasses.dbml”. Click the Add button. The Object Relational Designer opens.

linq-to-sql-second

Now, Drag and drop the tables from Server Explorer. This action adds tha table to your application, and you can retrieve any data from the table. In this case, the Customers table from the Northwind database is added to ORM Designer as shown in below screenshot.

linq-to-sql-third

Note : To open Server Explorer, Go to View -> Server Explorer or Press Ctrl+Alt+S keyboard shortcut.

Now, let’s open Program.cs page and add below line of code.

using System;

namespace LINQtoSQLDemo
{
    class Program
    {
        static void Main(string[] args)
        {
            NorthwindClassesDataContext nwContext = new NorthwindClassesDataContext();

            var Customers = nwContext.Customers;

            foreach (var Customer in Customers)
            {
                Console.WriteLine(Customer.CompanyName + " - " + Customer.Country);
            }
        }
    }
}

In the example, an instance of the data context NorthwindClassesDataContext is created, and then a query is formed to get all of the values from the “Customers” table.

The NorthwindClassesDataContext class was generated by the Visual Studio Object Relational Designer.

linq-to-sql-data-context

The Data Context provides the mapping of all entities (essentially tables) to the database. It is through the data context that the application can query the database, and it is through the data context that changes to the database can be executed.

Now, let’s run the application by pressing F5 key on the keyboard. The output of the application appears as shown in below screenshot.

linq-to-sql-output


C# LINQ

Leave a Reply