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.
|