Example E1578
Visible to All Users

WinForms Data Grid - LINQ to SQL Server Mode

This example binds the WinForms Data Grid control to data using the LINQ to SQL provider. The grid control is bound to LinqServerModeSource. The grid control operates in server mode.

The example fetches data from the AdventureWorks database on a local SQL Server. SQL queries are logged in the output window in the Visual Studio IDE.

Files to Review

Documentation

Does this example address your development requirements/objectives?

(you will be redirected to DevExpress.com to submit your response)

Example Code

LinqServerModeOnAdvWorks/Form1.cs(vb)
C#
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using DevExpress.XtraGrid.Columns; namespace LinqServerModeOnAdvWorks { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void Form1_Load(object sender, EventArgs e) { gridControl1.ServerMode = true; AdvWorksDataContext dc = new AdvWorksDataContext(); dc.Log = Console.Out; // log queries linqServerModeSource1.QueryableSource = dc.PurchaseOrderHeaders; gridControl1.DataSource = linqServerModeSource1; } } }

Disclaimer: The information provided on DevExpress.com and affiliated web properties (including the DevExpress Support Center) is provided "as is" without warranty of any kind. Developer Express Inc disclaims all warranties, either express or implied, including the warranties of merchantability and fitness for a particular purpose. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.

Confidential Information: Developer Express Inc does not wish to receive, will not act to procure, nor will it solicit, confidential or proprietary materials and information from you through the DevExpress Support Center or its web properties. Any and all materials or information divulged during chats, email communications, online discussions, Support Center tickets, or made available to Developer Express Inc in any manner will be deemed NOT to be confidential by Developer Express Inc. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.