Click here to Skip to main content
15,886,137 members
Articles / Desktop Programming / WPF

Dynamite: High Performace Dynamic Sorting Using Expressions

Rate me:
Please Sign up or sign in to vote.
4.89/5 (19 votes)
25 Sep 2008CPOL9 min read 86.7K   1K   61  
Easy-to-use and high performance dynamic sorting of most type of sequences with SQL-like syntax, developed using System.Linq.Expression classes.

Microsoft Visual Studio Solution File, Format Version 10.00
# Visual C# Express 2008
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Dynamite", "Dynamite\Dynamite.csproj", "{A1415FB6-EC2D-4152-B460-6CE6A4F70DE3}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DynamiteTester", "DynamiteTester\DynamiteTester.csproj", "{5255E511-6397-4439-8137-8F4C395BFBB5}"
EndProject
Global
	GlobalSection(SolutionConfigurationPlatforms) = preSolution
		Debug|Any CPU = Debug|Any CPU
		Release|Any CPU = Release|Any CPU
	EndGlobalSection
	GlobalSection(ProjectConfigurationPlatforms) = postSolution
		{A1415FB6-EC2D-4152-B460-6CE6A4F70DE3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{A1415FB6-EC2D-4152-B460-6CE6A4F70DE3}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{A1415FB6-EC2D-4152-B460-6CE6A4F70DE3}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{A1415FB6-EC2D-4152-B460-6CE6A4F70DE3}.Release|Any CPU.Build.0 = Release|Any CPU
		{5255E511-6397-4439-8137-8F4C395BFBB5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{5255E511-6397-4439-8137-8F4C395BFBB5}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{5255E511-6397-4439-8137-8F4C395BFBB5}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{5255E511-6397-4439-8137-8F4C395BFBB5}.Release|Any CPU.Build.0 = Release|Any CPU
	EndGlobalSection
	GlobalSection(SolutionProperties) = preSolution
		HideSolutionNode = FALSE
	EndGlobalSection
EndGlobal

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
Sweden Sweden
Henrik Jonsson is a Microsoft Professional Certified Windows Developer (MCPD) that currently works as an IT consultant in Västerås, Sweden.

Henrik has worked in several small and large software development projects in various roles such as architect, developer, CM and tester.

He regularly reads The Code Project articles to keep updated about .NET development and get new ideas. He has contributed with articles presenting some useful libraries for Undo/Redo, Dynamic Linq Sorting and a Silverlight 5 MultiBinding solution.

Comments and Discussions