Click here to Skip to main content
15,880,956 members
Please Sign up or sign in to vote.
1.06/5 (10 votes)
See more:
what is LINQ computing?
please simply expalin what is LINQ?
Posted
Updated 9-Jun-15 5:19am
v3
Comments
Richard C Bishop 28-Nov-12 10:31am    
Language Integrated Query.
Hari Krishna Prasad Inakoti 7-Feb-13 2:22am    
:D

 
Share this answer
 
Comments
Thomas Daniels 28-Nov-12 13:30pm    
Good answer, +5!
[no name] 29-Nov-12 3:45am    
Thanks :)
Maciej Los 9-Jun-15 13:01pm    
5ed! There's no better way than reading the documentation ;)
LINQ - Language Integrated Query is simply a unified programming model/framework for writing SQL queries in simple language(in which you are working for eg. C#,VB,etc) without learing SQL.Here unified programming model means once you write a LINQ query for a datasource that query will be fired/executed over different-different datasource.

For Example:

Linq To Sql query:

//
// var result=from m in DataContext.YourTableName select m;
//

This is simple Linq to Sql query for selecting a record from the database having table name "YourTableName"
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900