ashishsarda99
Name: ashishsarda99
Score: 1,420.05
Last Seen: 106 days, 10 hours, 46 minutes ago
Member Since: 26 July, 2010
DotNetShoutout
atom rss
8
Shouts

Grouping on Multiple Properties with LINQ

published 1023 days, 17 hours, 48 minutes ago posted by BlackWaspBlackWasp 1026 days, 9 hours, 6 minutes ago
Tuesday, August 03, 2010 12:19:31 PM GMT Saturday, July 31, 2010 9:01:20 PM GMT
LINQ allows queries to be executed that include grouping. The GroupBy query operator and the group clause both allow grouping using a single key selector. When it is necessary to group by multiple keys, the selector must include an expression. (more)
category: How To | clicked: 0 | 1 comment | | source: www.blackwasp.co.uk
tags: .NET, C#, Linq
11
Shouts

Using EF “Code First” with an Existing Database - Scott Guthrie

published 1019 days, 15 hours, 35 minutes ago posted by jantujantu 1022 days, 11 hours, 48 minutes ago
Saturday, August 07, 2010 2:32:10 PM GMT Wednesday, August 04, 2010 6:18:40 PM GMT
Last month I blogged about the new Entity Framework 4 “code first” development option.  EF “code-first” enables a pretty sweet code-centric development workflow for working with data.  It enables you to:Work with data without ever having to open a designer or define an XML mapping file Define model objects by simply writing “plain old classes” with no base classes required Use a “convention over configuration” approach that enables database persistence without explicitly configuring anything In my init... (more)
category: How To | clicked: 1 | 1 comment | | source: weblogs.asp.net
tags: .NET, Visual Studio, Linq, ASP.NET