By tag: Grouping
0
kicks
Code clarity: MVC 2 DropDownListFor - Any troubles? - Part 2
Hello again. Today I want to talk about select list with optgroups. So, I need such a list. MVC has no support for it. What to do? After little browsing I decide wrote my own solution. It is based on code from fixed version of MVC DropDownList (you can read about it in Part 1).
Main features ...
0
kicks
Regex matching and naming groups in C#
Let’s say you have a string and want to match individual groups of characters against that string. How would you do that? That’s the question I asked myself.
The following code is the outcome of some research on how to get this done. It shows you how to capture/match and name groups of characters u...
0
kicks
LINQ Farm: Focus on Grouping
This is the fifth post in a series of articles on LINQ and query expressions. LINQ will be part of Visual Studio Orcas. It provides a simple means of querying data. This article focuses on grouping information from a query into related sets of data.