vote up 1 vote down star

Back in the old days (i.e. last month) I'd bind my winforms grid to a dataset and be off and running. By default the grid contents could be updated. (similar to an Excel spreadsheet)

But, if I bind a grid to a Linq datasource (either Linq to SQL or Linq to Entities) my winforms grid is locked into a read-only mode. How can I enable an update mode?

flag

Deleted my answer. Did some digging around in the DGV. Seems like it handles ILists and IListSource implementations differently than others. These go into CurrencyManagers that are updatable and others go into PropertyManagers that are not. As to why ToList() fails I can't answer. Good luck. – Will Apr 14 at 18:21

3 Answers

vote up 0 vote down check

Found the solution: use lamda expressions to filter the entity and bind directly to the entity.

link|flag
vote up 1 vote down

Look at the GetNewBindingList method on the various classes for 'better' binding.

And remember to call SubmitChanges when you are done.

link|flag
vote up 1 vote down

Are you perhaps using an anonymous type in the projection? i.e.

select new {Foo = order.Foo, Bar = custmoer.Bar};

(or similar) - anonymous types in C# are immutable, so yes: it will seem read only. However, regular classes (either the LINQ-generated ones, or your own) should be editable. The only thing to remember is to call .ToList() on any query (rather than giving it the IEnumerable<T>/IQueryable<T> object).

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.