3
votes
4answers
583 views
Pros & cons between LINQ and traditional collection based approaches
Being relatively new to the .net game, I was wondering, has anyone had any experience of the pros / cons between the use of LINQ and what could be considered more traditional methods working with l …
0
votes
Pros & cons between LINQ and traditional collection based approaches
@john-boker - yes of course you're correct, as the LINQ would return a list (even if there were no matching items or there was only one)
@ …
2
votes
Is it possible to “autopopulate” fields in IE?
Assuming that you are essentially embedding the contents of a remote form in a frame/iframe, the you should be able to use some javascript to set values for the fields - field.value = "xxxx".
…
-5
votes
2
votes
How can I prevent loading a native dll from a .NET app?
As orip suggested, you will want to wrap it in a try {} catch {} block - in particular, you want to be watching out for the …
1
vote
Display whole data to the Admin
As Liao pointed out, it's very difficult to understand your question and even harder to provide a definitive answer due to the lack of technical information. As a general pointer:
…
0
votes
ASP.NET Server.Mappath problem from inner folders
Prefix your path string with a tilde (~) - this represents the root of the website:
xmlSiteConfig.Load(System.Web.HttpContext.Current.Server.MapPath("~/myConfig.xml"));
…
1
vote
Xbox programming
Good to see some people getting enthusiastic about programming - and better still playing about with C. Starting out with C, even if it's to do basic "Hello World" style programmes, will give you …
0
votes
How to make next step of a string. C#
You need to account for A) the fact that capital letters have a lower decimal value in the Ascii table than lower case ones. B) The table is not continuous A-Z-a-z - there are characters inbetween …
0
votes
In ASP.NET, how can I force the format of dates in a DropDownList to “DD/MM/YYYY”?
Just manually add the items to the DropDownList.Items collection instead of relying on DataBind():
DateTime date = DateTime.Now;
for (int i = 0; i < HISTORY_LENGTH; i++)
{
…
1
vote
where to put the validate logic? In Service or Repository?
Service - Respository patterns can be a little subjective. Of course there are bad / completely wrong examples out there (this one isn't though), but more often than not, it's down …
0
votes
MySql connection, can I leave it open?
No, I don't see any reason why not to leave a connection open and re-use it: after all, this is the whole point behind the various connection-pool technologies that are about (although these are ge …
0
votes
Get LINQ to preload a complete table
Short answer - you don't need to have the ToList()
Long answer - your ToList() call is totally rundant in the supplied example. When working with Linq, nothing it actually executed on you …
6
votes
Always using custom data types
Yes, utter madness - to sum up your idea, and to Paraphrase Blackadder
It's mad! It's mad. It's madder than Mad Jack McMad, the winner of this year's Mr Madman competition …
0
votes
Using string.Substring() as part of a chain
To further Konamiman's comment:
Just because PHP allows bizarre (and frankly dirty and dangerous) overloads and parameters such as negative starts and counts in SubString, it doesn't mean i …
