Skip to content

Latest commit

 

History

History
56 lines (37 loc) · 2.34 KB

programming-guide-linq-to-dataset.md

File metadata and controls

56 lines (37 loc) · 2.34 KB
description title ms.date ms.assetid
Learn more about: Programming Guide (LINQ to DataSet)
Programming Guide (LINQ to DataSet)
03/30/2017
977aedd7-0084-46a0-b56f-345787a55da1

Programming Guide (LINQ to DataSet)

This section provides conceptual information and examples for programming with LINQ to DataSet.

In This Section

Queries in LINQ to DataSet
Provides information about how to write LINQ to DataSet queries.

Querying DataSets
Describes how to query xref:System.Data.DataSet objects.

Comparing DataRows
Describes how to use the xref:System.Data.DataRowComparer object to compare data rows.

Creating a DataTable From a Query
Provides information about creating a xref:System.Data.DataTable from a LINQ to DataSet query by using the xref:System.Data.DataTableExtensions.CopyToDataTable%2A method.

How to: Implement CopyToDataTable<T> Where the Generic Type T Is Not a DataRow
Describes how to implement a custom CopyToDataTable<T> method where the generic parameter T is not of type xref:System.Data.DataRow.

Generic Field and SetField Methods
Provides information about the generic xref:System.Data.DataRowExtensions.Field%2A and xref:System.Data.DataRowExtensions.SetField%2A methods.

Data Binding and LINQ to DataSet
Describes databinding using the xref:System.Data.DataView object.

Debugging LINQ to DataSet Queries
Provides information about debugging and troubleshooting LINQ to DataSet queries.

Security
Describes security issues in LINQ to DataSet.

LINQ to DataSet Examples
Provides query examples that use the LINQ operators.

Reference

xref:System.Data.DataRowComparer

xref:System.Data.DataRowExtensions

xref:System.Data.DataTableExtensions

xref:System.Data.DataView

See also