Click here to Skip to main content
15,906,625 members
Home / Discussions / C#
   

C#

 
AnswerRe: database releted question Pin
PIEBALDconsult30-Jul-11 20:12
mvePIEBALDconsult30-Jul-11 20:12 
AnswerRe: database releted question Pin
Dave Kreskowiak31-Jul-11 4:26
mveDave Kreskowiak31-Jul-11 4:26 
AnswerRe: database releted question Pin
Abhinav S31-Jul-11 5:35
Abhinav S31-Jul-11 5:35 
AnswerRe: database releted question Pin
Shameel31-Jul-11 7:28
professionalShameel31-Jul-11 7:28 
QuestionMP3 Trimming Pin
gmhanna30-Jul-11 4:51
gmhanna30-Jul-11 4:51 
AnswerRe: MP3 Trimming [modified] Pin
GuyThiebaut30-Jul-11 7:34
professionalGuyThiebaut30-Jul-11 7:34 
AnswerRe: MP3 Trimming Pin
Ravi Bhavnani31-Jul-11 5:11
professionalRavi Bhavnani31-Jul-11 5:11 
QuestionWeb Get Requests Pin
gmhanna30-Jul-11 4:47
gmhanna30-Jul-11 4:47 
AnswerRe: Web Get Requests Pin
Keith Barrow30-Jul-11 8:13
professionalKeith Barrow30-Jul-11 8:13 
Questionc# project issue on 64-bit vista system Pin
Aisha sharma30-Jul-11 2:22
Aisha sharma30-Jul-11 2:22 
AnswerRe: c# project issue on 64-bit vista system Pin
Dave Kreskowiak30-Jul-11 3:59
mveDave Kreskowiak30-Jul-11 3:59 
GeneralRe: c# project issue on 64-bit vista system Pin
Aisha sharma31-Jul-11 19:21
Aisha sharma31-Jul-11 19:21 
GeneralRe: c# project issue on 64-bit vista system Pin
Dave Kreskowiak1-Aug-11 1:29
mveDave Kreskowiak1-Aug-11 1:29 
GeneralRe: c# project issue on 64-bit vista system [modified] Pin
Aisha sharma1-Aug-11 2:10
Aisha sharma1-Aug-11 2:10 
GeneralRe: c# project issue on 64-bit vista system Pin
Dave Kreskowiak1-Aug-11 3:27
mveDave Kreskowiak1-Aug-11 3:27 
GeneralRe: c# project issue on 64-bit vista system Pin
Aisha sharma1-Aug-11 18:43
Aisha sharma1-Aug-11 18:43 
GeneralRe: c# project issue on 64-bit vista system Pin
Aisha sharma3-Aug-11 2:27
Aisha sharma3-Aug-11 2:27 
GeneralRe: c# project issue on 64-bit vista system Pin
Dave Kreskowiak3-Aug-11 3:37
mveDave Kreskowiak3-Aug-11 3:37 
GeneralRe:[solved] c# project issue on 64-bit vista system Pin
Aisha sharma6-Aug-11 2:27
Aisha sharma6-Aug-11 2:27 
GeneralRe:[solved] c# project issue on 64-bit vista system Pin
Dave Kreskowiak6-Aug-11 2:42
mveDave Kreskowiak6-Aug-11 2:42 
QuestionDo Lambda expressions smell? Pin
Member 448708329-Jul-11 10:02
Member 448708329-Jul-11 10:02 
AnswerRe: Do Lambda expressions smell? Pin
Ian Shlasko29-Jul-11 10:22
Ian Shlasko29-Jul-11 10:22 
They're useful shortcuts. Func is just a shortcut for when you don't want to define a delegate yourself. These are all pretty much equivalent:
C#
Func<string, bool>
Predicate<string>
delegate bool MyStringTest(string s)


Lambda expressions themselves, I find extremely useful... I love being able to type:
C#
People.Where(a=>a.FirstName.StartsWith("B"));


This use of lambdas has nothing to do with SQL, aside from a syntax resemblance between the long-form LINQ queries and SQL queries (I prefer the shorthand notation).

Remember that LINQ extensions aren't only made for database access... They're great for working with collections.
Proud to have finally moved to the A-Ark. Which one are you in?
Author of the Guardians Saga (Sci-Fi/Fantasy novels)

GeneralRe: Do Lambda expressions smell? Pin
Member 444846031-Jul-11 10:59
Member 444846031-Jul-11 10:59 
AnswerIMHO Linq is a poor example of a good example Pin
Ennis Ray Lynch, Jr.29-Jul-11 10:25
Ennis Ray Lynch, Jr.29-Jul-11 10:25 
GeneralRe: IMHO Linq is a poor example of a good example Pin
Lutosław30-Jul-11 10:42
Lutosław30-Jul-11 10:42 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.