Any .NET (c#) guru\'s here???

Post Reply
okemos
Posts: 436
Joined: Fri Jan 21, 2011 11:03 pm

Any .NET (c#) guru's here???

Post by okemos »

Any C# sharp guru in this forum? I have a technical question.
Sai_R2I
Posts: 1422
Joined: Sat May 10, 2008 7:40 am

Any .NET (c#) guru's here???

Post by Sai_R2I »

There is a member with handle dotnetguru, I think.. :))

It would help if you throw the question out here..
okemos
Posts: 436
Joined: Fri Jan 21, 2011 11:03 pm

Any .NET (c#) guru's here???

Post by okemos »

Sai_R2I;373738There is a member with handle "dotnetguru", I think..
Anyway, throw the question at us(/them) and then we(/they) will figure out, if we(/they) are guru or not :))


Looks like you can answer this. Anyway here is the problem.

There is an Employee object (class), one of the attributes is "Salary"

There is a List Array containing storing multiple employee objects.

Eg: statement is

List allEmployees = new List();

Question is: How do i get the total salary paid to all employees and also the highest paid employee?

What is the quickest and best possible way to retrieve this information?
Sai_R2I
Posts: 1422
Joined: Sat May 10, 2008 7:40 am

Any .NET (c#) guru's here???

Post by Sai_R2I »

^^
The first solution that pops into my head(other than the routine iterative thingie) would be - handling it on database side is a faster route for such computations.

If it has to be an in-memory object, can LINQ be of help?
[QUOTE]When using LINQ with any supported data source (in-memory, relational data, XML) we can make use of a set of a standard query operators which empower us to manipulate our data source more effectively.
http://dotnetslackers.com/articles/csharp/IntroducingLINQ1.aspx

Disclaimer: I am a Java Pro and DotNet Rookie..Sorry, if this is not of much help
okemos
Posts: 436
Joined: Fri Jan 21, 2011 11:03 pm

Any .NET (c#) guru's here???

Post by okemos »

Sai_R2I;373749^^
The first solution that pops into my head(other than the routine iterative thingie) would be - handling it on database side is a faster route for such computations.

If it has to be an in-memory object, can LINQ be of help?

http://dotnetslackers.com/articles/csharp/IntroducingLINQ1.aspx

Disclaimer: I am a Java Pro and DotNet Rookie..Sorry, if this is not of much help


I do not want to use SQL Query in DB to retrieve the value. Also traditional iterative process will be cumbersome if the list array is huge. I haven't tried LINQ. Let me check this link.

Thanks Nanba.
Sai_R2I
Posts: 1422
Joined: Sat May 10, 2008 7:40 am

Any .NET (c#) guru's here???

Post by Sai_R2I »

okemos;373750
Thanks Nanba.


Ahem - Nanbi :) :-))


Glad to be of any help, Boss - Also, would suggest pinging dotnetguru and getting his input as well. I can't remember any other .Net person in the forum.
okemos
Posts: 436
Joined: Fri Jan 21, 2011 11:03 pm

Any .NET (c#) guru's here???

Post by okemos »

Sai_R2I;373752Ahem - Nanbi :) :-))

Glad to be of any help, Boss


Nanbi??? I didn't know that. Anyway thanks Nanbi.

Never tried LINQ. Let me see how it goes.
rajubiztech
Posts: 286
Joined: Wed Apr 18, 2007 8:57 pm

Any .NET (c#) guru's here???

Post by rajubiztech »

okemos;373750I do not want to use SQL Query in DB to retrieve the value. Also traditional iterative process will be cumbersome if the list array is huge. I haven't tried LINQ. Let me check this link.

Thanks Nanba.


I believe simple loop performs better than LINQ at runtime for calculations.
okemos
Posts: 436
Joined: Fri Jan 21, 2011 11:03 pm

Any .NET (c#) guru's here???

Post by okemos »

rajubiztech;373763I believe simple loop performs better than LINQ at runtime for calculations.


Yes, simple loop or issuing a direct sql query using datareader would solve this issue. If the dataset is too large then we may need to compromise on the performance side.
rajaR2I
Posts: 89
Joined: Wed Jul 07, 2010 10:33 pm

Any .NET (c#) guru's here???

Post by rajaR2I »

okemos;373750I do not want to use SQL Query in DB to retrieve the value. Also traditional iterative process will be cumbersome if the list array is huge. I haven't tried LINQ. Let me check this link.

Thanks Nanba.


Is there any specific reason you don't want to retrive the value from SQL? If you are filling your list from DB already, cann't you bring the calculated value as well at that time?
Post Reply

Return to “Life Abroad”