I have a DataGridControl bound to an EntitySet like this: Code Snippet <Window.Resources> <ObjectDataProvider x:Key="mforder" /> </Window.Resources> ...<more XAML here>... <xcdg:DataGridControl x:Name="notesdatagrid" Grid.Row="1" Grid.Column="1" CellEditorDisplayConditions="MouseOverCell" EditTriggers="BeginEditCommand,ActivationGesture" ItemScrollingBehavior="Immediate" DataContext="{Binding Source={StaticResource
Read More...