Yaakov Ellis

4,887
Reputation
241 views

Registered User

Name Yaakov Ellis
Member for 1 year
Seen 50 mins ago
Website
Location Israel
Age 28
Husband, father, learner and programmer trying to live life as it should be lived. (@yaakov)
1d
comment What is faster or preferred: IEnumerable<>.ToArray() or .ToList()?
According to reflector, List<>, ArrayList<> and Array each hold a length or size variable within the object that is referenced when doing a straight count - so running Count on an Array or List would not cause another enumeration.
1d
comment What is faster or preferred: IEnumerable<>.ToArray() or .ToList()?
But if you are that concerned about performance, then this means that you have to update the counter variable X times for an IEnumerable that has X items - compared to one lookup for Count, which may be more efficient for a big collection.
1d
answered What is faster or preferred: IEnumerable<>.ToArray() or .ToList()?
1d
answered Project code managment using SVN
1d
revised No Form.Submit() function in VB.NET or C#?
added 343 characters in body
1d
answered No Form.Submit() function in VB.NET or C#?
2d
accepted fill typed dataset by accessing columns directly?
2d
revised fill typed dataset by accessing columns directly?
put in code formatting
2d
comment fill typed dataset by accessing columns directly?
Columns aren't going to be in there through intellisense (you would get that if you used LinqToSql, EntityFramework or some other ORM). In the code. you can access the columns by reference to the DataColumn (as above), the column index or the column name. Check out the overrides for the newRow[] setting.
2d
answered fill typed dataset by accessing columns directly?
2d
answered C# How can I destroy a temporary string array before it gets garbage collected?
Nov
26
accepted Why would bulk Inserts cause an ASP.net application to become Unresponsive?
Nov
26
awarded  Popular Question
Nov
26
asked How can I reuse a Common Table Expression
Nov
25
answered Why would bulk Inserts cause an ASP.net application to become Unresponsive?
Nov
24
comment Why would bulk Inserts cause an ASP.net application to become Unresponsive?
Added responses above to some of your suggestions
Nov
24
revised Why would bulk Inserts cause an ASP.net application to become Unresponsive?
added responses to suggestions.
Nov
24
asked Why would bulk Inserts cause an ASP.net application to become Unresponsive?
Nov
19
awarded  Notable Question
Nov
17
answered single character domain names
Nov
16
answered How to put row number for sql query in sql 2000 where rownumber() is not supporting?
Nov
16
accepted Retrieve List of Tables in MS Access File
Nov
16
awarded  Popular Question
Nov
12
accepted Prevent .NET from writing to C:\Windows\Temp
Nov
12
comment Prevent .NET from writing to C:\Windows\Temp
Edited post to add link for instructions on how to change the temp folder.
Nov
12
revised Prevent .NET from writing to C:\Windows\Temp
added link to instructions on how to change temp folder
Nov
11
answered Prevent .NET from writing to C:\Windows\Temp
Nov
11
answered jquery: looking for a lightweight wysiwyg editor
Nov
11
answered Issues with the App_code folder
Nov
11
comment Is there any reason not to join Foreign Key to Foreign Key?
Financial is not the type of class. It is a file containing budgetary information. Budget rows can be related to specific schools (there is a different ClassType table that defines the type of class).
Nov
11
comment Is there any reason not to join Foreign Key to Foreign Key?
Yeah - forgot to mention that their is column grouping involved. Didn't think it directly relevant to the issue.
Nov
11
comment Is there any reason not to join Foreign Key to Foreign Key?
There is already an index on Financial.FK_SchoolID. I can't make it unique, as there can be many Financial rows for each school (just as there can be many classes for each school)
Nov
11
comment Is there any reason not to join Foreign Key to Foreign Key?
"The index most definitely affects performance" - so then I should join with Schools? "All tables have their PK and FK columns properly declared and defined" - so there is already an index for FK_SchoolID in the Financial table.
Nov
11
asked Is there any reason not to join Foreign Key to Foreign Key?
Nov
10
comment Retrieve List of Tables in MS Access File
At the very least, the description of the table (if one is saved)
Nov
9
answered Retrieve List of Tables in MS Access File
Nov
9
asked Retrieve List of Tables in MS Access File
Nov
8
answered How to do a lot of database queries with less performance?
Nov
4
answered A minimal MVC setup for ASP.NET 2.0
Oct
25
comment LINQ-To-SQL OrderBy with DateTime Not Working
Distinct() does not guarantee that it will maintain the order of the items that went into it - just that it will return a distinct result set. So although the input to Distinct() was originally sorted properly, its output was not.
Oct
25
accepted LINQ-To-SQL OrderBy with DateTime Not Working
Oct
25
answered LINQ-To-SQL OrderBy with DateTime Not Working
Oct
18
comment Perform Data Analysis on Sql Server or in .Net?
It needs to be repeated. And each time that it needs to be repeated, the sql will have to be regenerated, as the column names of the significant columns for aggregation and filtering will change (so LinqToSql is not an option).
Oct
18
asked Perform Data Analysis on Sql Server or in .Net?
Oct
16
asked .Net Powerpoint Component
Oct
6
awarded  Guru
Sep
24
awarded  Popular Question
Sep
16
awarded  Popular Question
Sep
15
awarded  Popular Question
Aug
27
comment Function to Calculate Median in Sql Server
In case of an even number of items, the median is the average of the two middle items, which is not covered by this UDF.