15,994,872 members
Sign in
Sign in
Email
Password
Forgot your password?
Sign in with
home
articles
Browse Topics
>
Latest Articles
Top Articles
Posting/Update Guidelines
Article Help Forum
Submit an article or tip
Import GitHub Project
Import your Blog
quick answers
Q&A
Ask a Question
View Unanswered Questions
View All Questions
View C# questions
View C++ questions
View Javascript questions
View Visual Basic questions
View .NET questions
discussions
forums
CodeProject.AI Server
All Message Boards...
Application Lifecycle
>
Running a Business
Sales / Marketing
Collaboration / Beta Testing
Work Issues
Design and Architecture
Artificial Intelligence
ASP.NET
JavaScript
Internet of Things
C / C++ / MFC
>
ATL / WTL / STL
Managed C++/CLI
C#
Free Tools
Objective-C and Swift
Database
Hardware & Devices
>
System Admin
Hosting and Servers
Java
Linux Programming
Python
.NET (Core and Framework)
Android
iOS
Mobile
WPF
Visual Basic
Web Development
Site Bugs / Suggestions
Spam and Abuse Watch
features
features
Competitions
News
The Insider Newsletter
The Daily Build Newsletter
Newsletter archive
Surveys
CodeProject Stuff
community
lounge
Who's Who
Most Valuable Professionals
The Lounge
The CodeProject Blog
Where I Am: Member Photos
The Insider News
The Weird & The Wonderful
help
?
What is 'CodeProject'?
General FAQ
Ask a Question
Bugs and Suggestions
Article Help Forum
About Us
Search within:
Articles
Quick Answers
Messages
Comments by gardnerp (Top 3 by date)
gardnerp
11-Jun-21 11:06am
View
Yes. Pull data, then sort. If for some reason you need the database to handle it, you can use a switch statement. That way the full query can be setup in advance and not fully repeated.
var linq2SqlQuery = (from obj in table where obj.Whatever = "Some filter" select obj);
switch (propertyToSort) {
case "Year":
linq2SqlQuery = linq2SqlQuery.OrderBy(o => o.Year);
break;
case "OtherProp":
linq2SqlQuery = linq2SqlQuery.OrderBy(o => o.OtherProp);
break;
}
var results = linq2SqlQuery.ToList();
gardnerp
9-May-18 10:20am
View
Not posting as an answer since I'm not 100% positive but it looks like the precision. (e.g. a 0 might return "3" while a 4 might return "3.1416"). Why not just run a select statement and modify it to see the result?
gardnerp
6-Jan-12 15:56pm
View
Did my question offend you somehow? I am more than aware of my shortcomings in the area. I wasn't asking ANY of those questions above, nor do I want someone to hold my hand and do my work for me. I was only explaining what I do not know. Obviously I don't even know enough to ask the proper questions.
My only real question above was "what is a good place to start". That has been answered, and I'll spend the next few days reading and learning the w3schools site. After that I'll buy a book or two, and start testing code out.
We all have to start somewhere.