Can we use LINQ with databases other than SQL Server?

Can I use LINQ with databases other than SQL Server? Explain how.

- LINQ supports Objects, XML, SQL, Datasets and entities.

- One can use LINQ with other databases through LINQ to Objects or LINQ to Datasets, where the objects and datasets, then take care of database specific operations and LINQ only needs to deal with those objects, not the database operations directly.

- It supports transactions, views, stored procedures and user-defined functions.

- LINQ to SQL is an easy way to integrate data validation and business logic rules into your data model.

- It supports single table inheritance in the object model.
What is Linq to SQL Deferred Loading?
What is Linq to SQL Deferred Loading?......
Write a Program using Skip and Take operators. How can it beneficial for bulky data accessing on page?
“skip” and “take” Operator used for Paging. Suppose we have Customer table of 100 records. To find 10 records by skipping the first 50 records from customer table-
Write a Program for Concat to create one sequence of Data Rows that contains DataTables's Data Rows, one after the other.
Write a Program for Concat to create one sequence of Data Rows that contains DataTables's Data Rows, one after the other.
Post your comment