Search Results

4
votes
5answers
1k views

Managing LINQ to SQL .dbml model complexity

This question is addressed to a degree in this question on LINQ to SQL .dbm …
3
votes

Update in Linq

By default, the entities will use all fields for checking concurrency when making edits. That's what's throwing the InvalidOperationException. This can be setting the Update Check property …
0
votes

Dynamic linq:Creating an extension method that produces JSON result

static void Main(string[] args) { NorthwindDataContext db = new NorthwindDataContext(); var query = db.Customers; string json = query.GetJsonTable<Customer>(2, 10, "Custom …
1
vote

Dynamic linq:Creating an extension method that produces JSON result

This is really ugly and there may be some issues with the string replacement, but it produces the expected results: public static class JSonify { public static string GetJsonTab …
6
votes

LINQ: custom column names

As CQ states, you can't have a space for the field name, you can return new columns however. var query = from u in db.Users select new { Firs …
8
votes

LINQ: custom column names

If you want to change the header text, you can set that in the GridView definition... <asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="false"> <Columns& …