User Yaakov Ellis - Stack Overflowmost recent 30 from stackoverflow.com2009-12-06T07:21:29Zhttp://stackoverflow.com/feeds/user/51http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1826658/what-is-faster-or-preferred-ienumerable-toarray-or-tolist/1826676#182667610Answer by Yaakov Ellis for What is faster or preferred: IEnumerable<>.ToArray() or .ToList()?Yaakov Ellis2009-12-01T14:50:31Z2009-12-01T14:50:31Z<p>The difference is probably so small that it is worth just using the method that fits your needs better. Smells of micro-optimization.</p>
<p>And in this case, since all you are doing is enumerating the set and counting the set (both of which you can do with an IEnumerable), why not just leave it as an IEnumerable<>?</p>
http://stackoverflow.com/questions/1825032/project-code-managment-using-svn/1825060#18250601Answer by Yaakov Ellis for Project code managment using SVNYaakov Ellis2009-12-01T09:37:25Z2009-12-01T09:37:25Z<p>Store everything in one directory. At the base of the directory should be the solution file. This should be stored in SVN as well (making it much easier to checkout a solution from SVN on a new machine). </p>
<p>For the framework project - try including it in the solution, and then referencing it in the base project of the solution.</p>
<p>If you need to just work on a part of the project, you can open up the entire solution and just work on the part that you need, or just checkout that project.</p>
http://stackoverflow.com/questions/1824938/no-form-submit-function-in-vb-net-or-c/1824993#18249932Answer by Yaakov Ellis for No Form.Submit() function in VB.NET or C#?Yaakov Ellis2009-12-01T09:23:29Z2009-12-01T09:29:45Z<p>C# and VB.net are server-side languages. Submitting a form in the browser is a client-side function, so you cannot use C# or VB.net. You will need to use Javascript for this (though you can include the javascript in your html using C# or VB.net).</p>
<pre><code>string js = @"
function valSubmit(){
varMyReg = document.form1.lstCountry.options[document.form1.lstCountry.selectedIndex].value;
varNewReg = varMyReg.substring(0, 3);
document.form1.hdnRegion.value = varNewReg;
document.form1.action = 'http://now.eloqua.com/e/f2.aspx'
document.form1.submit();
return true;
}";
RegisterStartupScript("submitform",js);
</code></pre>
<p>You can and should modify the script as you need, especially to identify asp.net controls properly. For example, you can use this.Form.ClientID to get the ID of the main form on a page. You can use both <a href="http://msdn.microsoft.com/en-us/library/system.web.ui.page.registerstartupscript.aspx" rel="nofollow">RegisterStartupScript</a> (before end of page) and <a href="http://msdn.microsoft.com/en-us/library/system.web.ui.page.registerclientscriptblock.aspx" rel="nofollow">RegisterClientScriptBlock</a> (at beginning of page) to emit client- scripts. </p>
http://stackoverflow.com/questions/1818578/fill-typed-dataset-by-accessing-columns-directly/1818604#18186042Answer by Yaakov Ellis for fill typed dataset by accessing columns directly?Yaakov Ellis2009-11-30T08:56:31Z2009-11-30T08:56:31Z<p>You need to go row by row and add the information to the columns for each for.</p>
<pre><code>DataTable HouseInformation = new DataTable("HouseInformation");
DataColumn colName = HouseInformation.Columns.Add("NameOfHouse");
DataColumn colPrice = HouseInformation.Columns.Add("Price");
// Add Data
DataRow newRow = HouseInformation.NewRow();
newRow[colName] = "Name of House 1";
newRow[colPrice] = 400000;
HouseInformation.Rows.Add(newRow);
</code></pre>
http://stackoverflow.com/questions/1818329/c-how-can-i-destroy-a-temporary-string-array-before-it-gets-garbage-collected/1818338#18183384Answer by Yaakov Ellis for C# How can I destroy a temporary string array before it gets garbage collected?Yaakov Ellis2009-11-30T07:36:24Z2009-11-30T07:36:24Z<pre><code>addresses = null;
</code></pre>
<p>Then if you really want to force GC, call this (otherwise, just set it to null and let the GC do its job on its own time):</p>
<pre><code>GC.Collect();
</code></pre>
<p>Also see this question: <a href="http://stackoverflow.com/questions/1104352/force-garbage-collection-of-arrays-c">Force garbage collection of arrays, C#</a></p>
http://stackoverflow.com/questions/1790677/why-would-bulk-inserts-cause-an-asp-net-application-to-become-unresponsive0Why would bulk Inserts cause an ASP.net application to become Unresponsive?Yaakov Ellis2009-11-24T15:08:27Z2009-11-26T08:52:10Z
<p>Setup: ASP.net 3.5, Linq-to-Sql. Separate Web and DB servers (each 8-core, 8GB RAM). 4 databases. I am running an insert operation with a few million records into DB4 (using Linq-to-Sql for now, though I might switch to SqlBulkCopy). Logging shows that records are being put in consistently at a rate of 600-700 per second (I am running DataContext.SubmitChanges() every 1000 records to keep the transaction size down). The insert is run during one Http Request (timeout is set pretty high).</p>
<p>The problem is that while this insert operation is running, the web application becomes <em>completely unresponsive</em> (both within different browser windows on my machine, and on other browsers in remote locations).</p>
<p>This insert operation is touching one table in DB4. Most pages will only touch DB1 (so I don't think that it is a locking issue - I also checked in through Management Studio, and no objects are being locked unnecessarily). I have checked out performance stats on both the Web and DB servers, and while they may spike from time to time, throughout the inserts they stay well within the "green".</p>
<p>Any idea about what can be causing the app to become unresponsive or suggestions about things that I should do in order to narrow down the issue?</p>
<p><em>Responses to suggestions:</em></p>
<ul>
<li>Suggestion that inserts are using all DB connections: the inserts are being done off of a different connection string (and DB) than what other pages in the app use. Also, I checked in SSMS, and there is just one connection open for DB4, and one open for DB1 (so it doesn't look like it is running out of connections). </li>
<li>Suggestion that inserts are maxing out CPU on web server: this is the only application on the server (and less than 5 users at any one time). Performance monitor shows CPU staying in between 12%-20%. Memory is hardly being touched.</li>
</ul>
http://stackoverflow.com/questions/1801976/how-can-i-reuse-a-common-table-expression0How can I reuse a Common Table ExpressionYaakov Ellis2009-11-26T06:58:19Z2009-11-26T07:08:31Z
<p>I am using a Common Table Expression for paging:</p>
<pre><code>with query as (
Select Row_Number() over (Order By OrderNum ASC) as TableRowNum,
FirstName,
LastName
From Users
)
Select * from query where TableRowNum between 1 and 25 Order By TableRowNum ASC
</code></pre>
<p>Immediately after making this query, I make make an almost identical query in order to retrieve the total number of items:</p>
<pre><code>with query as (
Select Row_Number() over (Order By OrderNum ASC) as TableRowNum,
FirstName,
LastName
From Users
)
Select Count(*) from query
</code></pre>
<p>I have tried combining these together (ie: define the CTE, query the data and then query the Count, but when I do this, I get an error message "Invalid object name 'query'" in response the the second query (the Count).</p>
<p>Is there any way to combine these two queries into one, to save a round-trip to the DB?</p>
http://stackoverflow.com/questions/1790677/why-would-bulk-inserts-cause-an-asp-net-application-to-become-unresponsive/1796942#17969420Answer by Yaakov Ellis for Why would bulk Inserts cause an ASP.net application to become Unresponsive?Yaakov Ellis2009-11-25T13:34:41Z2009-11-25T13:34:41Z<p><strong>Eventual Solution</strong>: I changed the data insertions from LinqToSql to use <a href="http://msdn.microsoft.com/en-us/library/ex21zs8x.aspx" rel="nofollow">SqlBulkCopy</a> via DataTable. The first time I did this, I got an OutOfMemory exception when trying to build a DataTable with 2 million rows in memory. So I am adding 50,000 rows at a time, and loading them into the DB with SqlBulkCopy (Batch Rate: 10,000) and then clearing the DataTable Rows collection. I am now getting in 2.1 million rows in 108 seconds (About 20,000 per second; Rate rate last night was average of 200 per second with L2S). With the increased data insertion performance, the app-wide unresponsiveness has gone away.</p>
http://stackoverflow.com/questions/1748000/single-character-domain-names/1748015#17480151Answer by Yaakov Ellis for single character domain namesYaakov Ellis2009-11-17T10:46:47Z2009-11-17T10:46:47Z<p>There are some (x.com is owned by paypal, q.com and z.com are <a href="http://findarticles.com/p/articles/mi%5Fm0CGN/is%5F3735/ai%5F55603554/" rel="nofollow">also taken</a>) though they cut off registration of these before all were taken. However, other TLD's do make one-letter domains available (like <a href="http://sedo.biz/us/sedo/biz/?partnerid=48176" rel="nofollow">.biz</a>)</p>
http://stackoverflow.com/questions/1742077/how-to-put-row-number-for-sql-query-in-sql-2000-where-rownumber-is-not-supporti/1742091#17420910Answer by Yaakov Ellis for How to put row number for sql query in sql 2000 where rownumber() is not supporting?Yaakov Ellis2009-11-16T13:07:16Z2009-11-16T13:07:16Z<p>You can't use Row_Number() in Sql Server 2000 - it was introduced in 2005.</p>
<p>In case you wanted to use Row_Number for paging, here are some ideas on how to perform efficient paging in Sql 2000:</p>
<ul>
<li><a href="http://www.4guysfromrolla.com/webtech/041206-1.shtml" rel="nofollow">Efficiently Paging Through Large Result Sets in SQL Server 2000</a> </li>
<li><a href="http://www.4guysfromrolla.com/webtech/042606-1.shtml" rel="nofollow">A More Efficient Method for Paging Through Large Result Sets</a> </li>
</ul>
http://stackoverflow.com/questions/1717574/prevent-net-from-writing-to-c-windows-temp/1717637#17176374Answer by Yaakov Ellis for Prevent .NET from writing to C:\Windows\TempYaakov Ellis2009-11-11T19:52:57Z2009-11-12T11:59:13Z<p>It seems that webservices require read/write permission to %SystemRoot%\Temp (<a href="http://msdn.microsoft.com/en-us/library/kwzs111e.aspx" rel="nofollow">MSDN</a>).</p>
<p>From <a href="http://www.eggheadcafe.com/software/aspnet/34046315/problem-writing-to-cwin.aspx" rel="nofollow">here</a>:</p>
<blockquote>
<p>If you're running ASP.NET 2.0 or
above, you can assign the required
permissions with the command:</p>
<pre><code>aspnet_regiis -GA MachineName\Account
</code></pre>
</blockquote>
<p>This <a href="http://www.hanselman.com/blog/ChangingWhereXmlSerializerOutputsTemporaryAssemblies.aspx" rel="nofollow">blog post</a> contains instructions on how to change the location of the SystemRoot\Temp folder used for this (as well as instructions on how to use reflector to determine the setting in web.config to set for a situation like this)</p>
http://stackoverflow.com/questions/1717456/jquery-looking-for-a-lightweight-wysiwyg-editor/1717476#17174763Answer by Yaakov Ellis for jquery: looking for a lightweight wysiwyg editorYaakov Ellis2009-11-11T19:27:46Z2009-11-11T19:27:46Z<p>See <a href="http://stackoverflow.com/questions/1141073/whats-the-best-wysiwyg-editor-for-use-with-jquery">What’s the best WYSIWYG Editor for use with jQuery?</A></p>
http://stackoverflow.com/questions/1587765/issues-with-the-appcode-folder/1717432#17174321Answer by Yaakov Ellis for Issues with the App_code folderYaakov Ellis2009-11-11T19:16:45Z2009-11-11T19:16:45Z<p>I would consider moving all of your code out of App_Code (and the /OldProject/App_Code) folders and into a new Class Library Project. Put the code from OldProject into one namespace, and the code from NewProject into a different namespace (avoids the duplicate name problem). Then add references to the new project dll and namespace to the web app where appropriate (doing this will also enable you to Unit Test your code, something that is near impossible to do when the code is in App_Code).</p>
http://stackoverflow.com/questions/1714800/is-there-any-reason-not-to-join-foreign-key-to-foreign-key1Is there any reason not to join Foreign Key to Foreign Key?Yaakov Ellis2009-11-11T12:10:40Z2009-11-11T18:39:18Z
<p>I have the following tables:</p>
<p><strong>Financial</strong>:</p>
<ul>
<li>PK_FinancialID</li>
<li>FK_SchoolID</li>
</ul>
<p><strong>School</strong>:</p>
<ul>
<li>PK_SchoolID</li>
</ul>
<p><strong>Class</strong>:</p>
<ul>
<li>PK_ClassID</li>
<li>FK_SchoolID</li>
<li>ClassName</li>
</ul>
<p>Both Class and Financial have Foreign Key relationships to School. I want to make a query that would show all classes that are related to Financial rows that meet certain criteria.</p>
<p>Initially I think to construct the query as follows:</p>
<pre><code>Select Class.ClassName
From Class
Join School on Class.FK_SchoolID = School.PK_SchoolID
Join Financial on Financial.FK_SchoolID = Schol.PK_SchoolID
Where Financial ... -- define criteria
</code></pre>
<p>However, since both Financial and Class are joined on the PK_SchoolID column, it should be possible to rewrite the query as follows (cutting out the School table and joining Class and Financial directly):</p>
<pre><code>Select Class.ClassName
From Class
Join Financial on Financial.FK_SchoolID = Class.FK_SchoolID
Where Financial ... -- define criteria
</code></pre>
<p>Which approach is preferable from a sql perspective? Would including the School table make performance better because the actual PK record is referenced (and thus a Clustered Index can be referenced)? Or does that not really matter? Anything that I am missing?</p>
<p>Platform: Sql Server 2005. All tables have their PK and FK columns properly declared and defined.</p>
http://stackoverflow.com/questions/120404/problem-accessing-file-from-different-thread-in-asp-net0Problem accessing file from different thread in Asp.netYaakov Ellis2008-09-23T11:26:12Z2009-11-11T06:42:33Z
<p>I have a process in a website (Asp.net 3.5 using Linq-to-Sql for data access) that needs to work as follows:</p>
<ol>
<li>Upload file</li>
<li>Record and save info regarding file to database</li>
<li>Import data from file into database</li>
<li>Redirect to different page</li>
</ol>
<p>When run sequentially like this, everything works fine. However, since the files being imported can be quite large, I would like step 3 to run on a different thread from the UI thread. The user should get to step 4 while step 3 is still in progress, and the screen on step 4 will periodically update to let the user know when the import is complete.</p>
<p>I am handling the threading as follows:</p>
<pre><code>public class Import {
public static void ImportPendingFile() {
Import i = new Import();
Thread newThread = new Thread(new ThreadStart(i.ImportFile));
newThread.Start();
}
public void ImportFile() {
// 1. Query DB to identify pending file
// 2. Open up and parse pending file
// 3. Import all data from file into DB
// 4. Update db to reflect that import completed successfully
}
}
</code></pre>
<p>And in the codebehind:</p>
<pre><code>protected void butUpload(object sender, EventArgs e) {
// Save file, prepare for import
Import.ImportPendingFile();
Response.Redirect(NewLocation);
}
</code></pre>
<p>When doing this, I am able to confirm via debugger that the new thread is starting up properly. However, whenever I do this, the thread aborts when trying to access the file (step 2 in the code behind). This works fine when run in the main thread, so something about the multi-threaded situation is preventing this. I had thought that since the file is saved to disk (which it is) that there shouldn't be any problem with opening it up in a different thread. Any ideas where I have gone wrong and how I can fix it? Thanks! </p>
<p>Note: I am using a third-party assembly to open the file. Using reflector, I have found the following code related to how it opens up the file:</p>
<pre><code>if (File.Exists(fileName)) {
using (FileStream stream = new FileStream(fileName, FileMode.Open)) {
// use stream to open file
}
}
</code></pre>
http://stackoverflow.com/questions/1699897/retrieve-list-of-tables-in-ms-access-file0Retrieve List of Tables in MS Access FileYaakov Ellis2009-11-09T09:12:00Z2009-11-09T09:19:43Z
<p>If I can open a connection to an MS Access file in C#, how can I retrieve a list of the different tables that exist in the Access DB (and if possible, any meta-data associated with the tables)?</p>
http://stackoverflow.com/questions/1699897/retrieve-list-of-tables-in-ms-access-file/1699928#16999280Answer by Yaakov Ellis for Retrieve List of Tables in MS Access FileYaakov Ellis2009-11-09T09:19:43Z2009-11-09T09:19:43Z<p>I just found the following solution from <a href="http://davidhayden.com/blog/dave/archive/2006/10/01/GetListOfTablesInMicrosoftAccessUsingGetSchema.aspx" rel="nofollow">David Hayden</a></p>
<pre><code>// Microsoft Access provider factory
DbProviderFactory factory = DbProviderFactories.GetFactory("System.Data.OleDb");
DataTable userTables = null;
using (DbConnection connection = factory.CreateConnection()) {
// c:\test\test.mdb
connection.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=c:\\test\\test.mdb";
// We only want user tables, not system tables
string[] restrictions = new string[4];
restrictions[3] = "Table";
connection.Open();
// Get list of user tables
userTables = connection.GetSchema("Tables", restrictions);
}
List<string> tableNames = new List<string>();
for (int i=0; i < userTables.Rows.Count; i++)
tableNames.Add(userTables.Rows[i][2].ToString());
</code></pre>
http://stackoverflow.com/questions/1696316/how-to-do-a-lot-of-database-queries-with-less-performance/1696354#16963541Answer by Yaakov Ellis for How to do a lot of database queries with less performance?Yaakov Ellis2009-11-08T12:59:26Z2009-11-08T12:59:26Z<ul>
<li>All of the timers on the page should automatically decrement one tick every second (if it is below the "display seconds" threshold - otherwise update minute once a minute). This is handled through client-side javascript using a timer to trigger the updates.</li>
<li>Whenever an auction's time is reset (due to a bid) this is updated in the db, and also in a server-side cache. The cache is stores the time reset, the auctionID and the new end-time for the auction</li>
<li>Once every second or so, the page sends an Ajax request (JSON, preferably) back to the server, asking for all of the auctionIDs and new end-times for all auctions whose time has been reset since the last time this page requested it (a value that is stored on the client-side at every request). Based on the return value, only the updated auctions are updated on the client side. And the DB is only queried on the initial page load - all subsequent update requests hit the cache.</li>
</ul>
http://stackoverflow.com/questions/1672326/a-minimal-mvc-setup-for-asp-net-2-0/1672333#16723330Answer by Yaakov Ellis for A minimal MVC setup for ASP.NET 2.0Yaakov Ellis2009-11-04T08:11:03Z2009-11-04T08:11:03Z<p>See these articles for guides on how to implement routing (though doing it with just one or two lines in web.config may be a lofty goal):</p>
<ul>
<li><a href="http://msdn.microsoft.com/en-us/magazine/dd347546.aspx" rel="nofollow">Routing with ASP.NET Web Forms</a> (Scott Allen)</li>
<li><a href="http://msdn.microsoft.com/en-us/library/ms972974.aspx" rel="nofollow">URL Rewriting in ASP.NET</a> (Scott Mitchell)</li>
</ul>
<p>For injecting your model data - in the code behind retrieve the model object that you want, and use the page events (Page_Load, etc) to insert the data in to controls, or bind it to bindable controls. </p>
http://stackoverflow.com/questions/1620862/linq-to-sql-orderby-with-datetime-not-working/1620924#16209241Answer by Yaakov Ellis for LINQ-To-SQL OrderBy with DateTime Not WorkingYaakov Ellis2009-10-25T13:29:43Z2009-10-25T13:29:43Z<p>Try evaluating the expression without sorting, and then apply the sort to the results of Distinct:</p>
<pre><code>(Linq-To-Sql-Expression).Distinct().OrderByDescending(x => x.TIMECARDDATE).ToList()
</code></pre>
http://stackoverflow.com/questions/1585993/perform-data-analysis-on-sql-server-or-in-net0Perform Data Analysis on Sql Server or in .Net?Yaakov Ellis2009-10-18T20:49:07Z2009-10-19T01:48:23Z
<p>I have some data analysis that needs to perform. On average, it would involve somewhere in between 50K-150K rows. From these rows I need to extract the summation of Sum(X) as well as Count(X) based on five different criteria. There are two ways of going about it:</p>
<ol>
<li>Write 10 different queries, each one designed to aggregate the data from column X using Sum() or Count(). Run each one and retrieve the result using SqlCommand.ExecuteScalar().</li>
<li>Create a custom object to contain all of the different parameters that would be needed to evaluate the different conditions. Run one query that will return all of the data needed to make up the superset containing all of the different conditional subsets, using SqlCommand.ExecuteDataReader(). Read each row from the DataReader into a new object, adding each one into a List collection. One all data is retrieved, use Linq-to-Object to determine the different Sum() and Count() values needed based on different conditions.</li>
</ol>
<p>I know that I could try each one out to see which is fastest, but I am interested in the community's advice on which one is likely to be faster. Assume Sql Server and Web Server each running on their own machines, each with sufficient memory. </p>
<p>Right now I am leaning towards option 1. Even though there are many more queries to the DB, the DB itself will do all of the aggregation work and very little data will pass in between the Sql Server and the Web Server. With option 2, there is only one query, but it will pass a very large amount of data to .Net, and then .Net will have to do all of the heavy lifting with regards to the aggregate functions (and though I don't have anything to base it on, I suspect that Sql Server is more efficient at running these types of big aggregate functions).</p>
<p>Any thoughts on which way to go (or a third option that I am missing)?</p>
http://stackoverflow.com/questions/1576731/net-powerpoint-component0.Net Powerpoint ComponentYaakov Ellis2009-10-16T08:04:39Z2009-10-16T09:58:31Z
<p>I am looking for a .Net component to allow reading and generation of powerpoint files. So far the only thing that I have been able to find is the component by <a href="http://www.aspose.com/categories/.net-components/aspose.slides-for-.net/default.aspx" rel="nofollow">Aspose</a>. Can anyone recommend other possible tools to use for this?</p>
http://stackoverflow.com/questions/1342898/function-to-calculate-median-in-sql-server1Function to Calculate Median in Sql ServerYaakov Ellis2009-08-27T18:24:33Z2009-10-14T17:54:10Z
<p>According to <a href="http://msdn.microsoft.com/en-us/library/ms173454.aspx" rel="nofollow">MSDN</a>, Median is not available as an aggregate function in Transact-Sql. However, I would like to find out whether it is possible to create this functionality (using the <a href="http://msdn.microsoft.com/en-us/library/ms182741.aspx" rel="nofollow">Create Aggregate</a> function, user defined function, or some other method). </p>
<p>What would be the best way (if possible) to do this - allow for the calculation of a median value (assuming a numeric data type) in an aggregate query?</p>
http://stackoverflow.com/questions/8722/how-do-you-use-powershell16How do you use PowerShell?Yaakov Ellis2008-08-12T12:04:14Z2009-08-27T05:47:45Z
<p><a href="http://www.microsoft.com/windowsserver2003/technologies/management/powershell/default.mspx" rel="nofollow" title="InfoQ">Windows PowerShell</a> came out last year and got great reviews from many .net bloggers (<a href="http://www.hanselman.com/blog/CategoryView.aspx?category=PowerShell" rel="nofollow" title="JavaLobby">Hanselman</a> comes to mind). It seemed to be touted as a great new utility that somehow made everything that you would ever do on the command line easier, and integrated with .Net. However, the more I read about it, the more it seems to be a tool that is great for IT professionals, and not much use for developers.</p>
<p>Do you use PowerShell in your dev work? If so, how? Is it worth learning? </p>
<p>Note: After seeing the responses so far, I think it is valid to conclude that PowerShell can be very useful to a .Net developer. However, there is no one answer below that I can label as <strong>the</strong> answer (so please forgive me for not doing so). I am voting up each answer that I have found helpful. Thanks for the responses!</p>
http://stackoverflow.com/questions/1326649/how-do-i-unignore-a-file-in-tortoisesvn4How do I Unignore a file in TortoiseSVN?Yaakov Ellis2009-08-25T07:47:52Z2009-08-25T18:12:32Z
<p>I ignored a file in TortoiseSVN by mistake. How do I reverse this and add the file to my repository?</p>
http://stackoverflow.com/questions/1327548/how-to-change-all-sql-columns-of-one-datatype-into-another2How to Change All Sql Columns of One DataType into AnotherYaakov Ellis2009-08-25T11:06:22Z2009-08-25T11:48:30Z
<p>I have a database (Sql Server 2005) where there are dozens of tables, each of which has a number of columns (on average 10-20) with datatype set to nvarchar(max). This is absolutely killing performance (some of these columns are being used for joins and some of the tables have 100K+ rows). I would like to change all of these columns to be varchar(250). What would be the best way to automate this? (I could use Management Studio, or I could create a utility to perform this through an ASP.net website that has access to the db, whichever is easier).</p>
http://stackoverflow.com/questions/1318423/access-app-config-settings-from-class-library-called-through-unit-test-project1Access App.Config Settings from Class Library Called through Unit Test ProjectYaakov Ellis2009-08-23T12:10:46Z2009-08-23T13:16:53Z
<p>I have the following setup:</p>
<ul>
<li>ASP.net 3.5 Web Site Project</li>
<li>C# Class Library with business logic</li>
<li>C# Class Library for unit testing</li>
</ul>
<p>The business logic library does all of the db access. It gets connection strings from the web.config file of the web site by accessing System.Configuration.ConfigurationManager.ConnectionStrings. When the library is called by the web site, this works fine, as the library looks for the config of the caller.</p>
<p>I want to be able to test my business logic through the unit testing class library. I have put an App.config file in the root of the testing class library. From what I read, when the testing library calls data access procedures that are part of the business logic library, the connection settings from the App.config file of the testing library should be accessed and used. However, when I try to run my unit tests, I am getting errors back that indicate that the testing library's App.config file (and/or its contents) is not being accessed successfully.</p>
<p>My retrieval of the config properties (from within the business logic library) looks like this:</p>
<pre><code>public SqlConnection MainConnection {
get {
string conn = "";
try {
conn = System.Configuration.ConfigurationManager.ConnectionStrings["connString"].ConnectionString;
} catch {
// might be calling from test project. Need to reference app settings
conn = System.Configuration.ConfigurationManager.AppSettings["connString"];
}
return new SqlConnection(conn);
}
}
</code></pre>
<p>When this is called from the website project, it works. From within the unit test, the conn variable is never set to anything (I have also tried System.Configuration.ConfigurationSettings.AppSettings, and using instead of with the same result). What do I need to do to make the business logic class library successfully retrieve the unit test class libraries settings, when called from within the NUnit GUI?</p>
http://stackoverflow.com/questions/1318423/access-app-config-settings-from-class-library-called-through-unit-test-project/1318501#13185012Answer by Yaakov Ellis for Access App.Config Settings from Class Library Called through Unit Test ProjectYaakov Ellis2009-08-23T12:56:40Z2009-08-23T13:16:53Z<p>I just found the solution <a href="http://www.safnet.com/writing/tech/archives/2007/12/nunit_ignores_a.html" rel="nofollow">here</a>. App.config is now being used properly when running my tests through the NUnit GUI.</p>
<p>Apparently if you are using the NUnit GUI and add the assembly by going through Project > Add Assembly, it doesn't access the app.config. However, if you add the assembly to the NUnit project by dragging the dll from Windows Explorer into the NUnit GUI, then it will access the app.config. </p>
<p>Alternatively, you can add the assembly through the GUI and then go in the NUnit GUI > Project > Edit, and set the Configuration File Name to the name of the configuration file (VS will set this to name.of.your.dll.config) and set the Project Base to the \bin\Debug directory of your project (these are the extra steps that are done in the background when you drag in the assembly vs adding it manually.</p>
http://stackoverflow.com/questions/290980/windows-forms-error-a-strongly-named-assembly-is-required0Windows Forms Error: "A strongly-named assembly is required" Yaakov Ellis2008-11-14T18:41:42Z2009-08-17T16:11:27Z
<p>I have a Windows forms project (VS 2005, .net 2.0). The solution has references to 9 projects. Everything works and compiles fine on one of my computers. When I move it to a second computer, 8 out of the 9 project compile with no problem. When I try to compile the 9th project (the main project for the application - produces the .exe file to execute the application), I get the following error: </p>
<pre><code>'Error 3: A strongly-named assembly is required. (Exception from HRESULT: 0x80131044)'
</code></pre>
<p>The file location for the error is is listed as "C:\PATH-TO-APP\LC". </p>
<p>I have checked in the project properties and all of the projects are set to build in Debug mode, none of them are supposed to be signed. In the project that is failing, the only assembly that it references that is not in any of the other projects is Microsoft.VisualBasic (a .net 2.0 assembly). So I am at a loss to find what ids causing this error (the file referenced above in the error message - "LC" - does not exist. </p>
<p>Anyone know how I can force the project to accept all unsigned assemblies, or to determine which assembly is the culprit?</p>
<p>The only meaningful difference between the dev environments between the dev environment where this worked and the current one is that the first was XP and this is Vista64. However, a colleague of mine who is using XP is getting the same error.</p>
<p><strong>Third-party assemblies being used:</strong></p>
<ul>
<li>ComponentFactory.Krypton.Toolkit</li>
<li>ComponentFactory.Krypton.Navigator</li>
<li>VistaDB.NET20</li>
</ul>
<p>All of these are referenced in other projects in the solution which build with no problems, so it doesn't look like these are the problem.</p>
<p>So far I have tried deleting the suo file, Rebuild All, unloading and reloading projects from the solution, removing and readding referenced assemblies. Nothing has worked.<code> </code></p>
http://stackoverflow.com/questions/1949/are-multiple-datacontext-classes-ever-appropriate6Are Multiple DataContext classes ever appropriate?Yaakov Ellis2008-08-05T05:54:34Z2009-08-04T23:01:32Z
<p>In order to fully use LinqToSql in an ASP.net 3.5 application, it is necessary to create <a href="http://msdn.microsoft.com/en-us/library/system.data.linq.datacontext.aspx" rel="nofollow">DataContext</a> <a href="http://dotnetslackers.com/articles/csharp/InsideTheLINQToSQLDataContextClass.aspx" rel="nofollow">classes</a> (which is usually done using the designer in VS 2008). From the UI perspective, the DataContext is a design of the sections of your database that you would like to expose to through LinqToSql and is integral in setting up the ORM features of LinqToSql.</p>
<p>My question is: I am setting up a project that uses a large database where all tables are interconnected in some way through Foreign Keys. My first inclination is to make one huge DataContext class that models the entire database. That way I could in theory (though I don't know if this would be needed in practice) use the Foreign Key connections that are generated through LinqToSql to easily go between related objects in my code, insert related objects, etc.</p>
<p>However, after giving it some thought, I am now thinking that it may make more sense to create multiple DataContext classes, each one relating to a specific namespace or logical interrelated section within my database. My main concern is that instantiating and disposing one huge DataContext class all the time for individual operations that relate to specific areas of the Database would be impose an unnecessary imposition on application resources. Additionally, it is easier to create and manage smaller DataContext files than one big one. The thing that I would lose is that there would be some distant sections of the database that would not be navigable through LinqToSql (even though a chain of relationships connects them in the actual database). Additionally, there would be some table classes that would exist in more than one DataContext.</p>
<p>Any thoughts or experience on whether multiple DataContexts (corresponding to DB namespaces) are appropriate in place of (or in addition to) one very large DataContext class (corresponding to the whole DB)?</p>
http://stackoverflow.com/questions/1826658/what-is-faster-or-preferred-ienumerable-toarray-or-tolist/1826709#1826709Comment by Yaakov Ellis on What is faster or preferred: IEnumerable<>.ToArray() or .ToList()?Yaakov Ellis2009-12-01T15:18:46Z2009-12-01T15:18:46ZAccording 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.http://stackoverflow.com/questions/1826658/what-is-faster-or-preferred-ienumerable-toarray-or-tolist/1826709#1826709Comment by Yaakov Ellis on What is faster or preferred: IEnumerable<>.ToArray() or .ToList()?Yaakov Ellis2009-12-01T14:59:39Z2009-12-01T14:59:39ZBut 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.http://stackoverflow.com/questions/1818578/fill-typed-dataset-by-accessing-columns-directly/1818604#1818604Comment by Yaakov Ellis on fill typed dataset by accessing columns directly?Yaakov Ellis2009-11-30T09:02:35Z2009-11-30T09:02:35ZColumns 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.http://stackoverflow.com/questions/1790677/why-would-bulk-inserts-cause-an-asp-net-application-to-become-unresponsive/1790703#1790703Comment by Yaakov Ellis on Why would bulk Inserts cause an ASP.net application to become Unresponsive?Yaakov Ellis2009-11-24T15:31:03Z2009-11-24T15:31:03ZAdded responses above to some of your suggestions http://stackoverflow.com/questions/1717574/prevent-net-from-writing-to-c-windows-temp/1717637#1717637Comment by Yaakov Ellis on Prevent .NET from writing to C:\Windows\TempYaakov Ellis2009-11-12T11:59:34Z2009-11-12T11:59:34ZEdited post to add link for instructions on how to change the temp folder.http://stackoverflow.com/questions/1714800/is-there-any-reason-not-to-join-foreign-key-to-foreign-key/1717244#1717244Comment by Yaakov Ellis on Is there any reason not to join Foreign Key to Foreign Key?Yaakov Ellis2009-11-11T19:09:49Z2009-11-11T19:09:49ZFinancial 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).http://stackoverflow.com/questions/1714800/is-there-any-reason-not-to-join-foreign-key-to-foreign-key/1714838#1714838Comment by Yaakov Ellis on Is there any reason not to join Foreign Key to Foreign Key?Yaakov Ellis2009-11-11T12:29:09Z2009-11-11T12:29:09ZYeah - forgot to mention that their is column grouping involved. Didn't think it directly relevant to the issue.http://stackoverflow.com/questions/1714800/is-there-any-reason-not-to-join-foreign-key-to-foreign-key/1714838#1714838Comment by Yaakov Ellis on Is there any reason not to join Foreign Key to Foreign Key?Yaakov Ellis2009-11-11T12:19:24Z2009-11-11T12:19:24ZThere 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)http://stackoverflow.com/questions/1714800/is-there-any-reason-not-to-join-foreign-key-to-foreign-key/1714825#1714825Comment by Yaakov Ellis on Is there any reason not to join Foreign Key to Foreign Key?Yaakov Ellis2009-11-11T12:18:07Z2009-11-11T12:18:07Z"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.http://stackoverflow.com/questions/1699897/retrieve-list-of-tables-in-ms-access-fileComment by Yaakov Ellis on Retrieve List of Tables in MS Access FileYaakov Ellis2009-11-10T04:25:05Z2009-11-10T04:25:05ZAt the very least, the description of the table (if one is saved)http://stackoverflow.com/questions/1620862/linq-to-sql-orderby-with-datetime-not-working/1620924#1620924Comment by Yaakov Ellis on LINQ-To-SQL OrderBy with DateTime Not WorkingYaakov Ellis2009-10-25T19:19:55Z2009-10-25T19:19:55ZDistinct() 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.http://stackoverflow.com/questions/1585993/perform-data-analysis-on-sql-server-or-in-netComment by Yaakov Ellis on Perform Data Analysis on Sql Server or in .Net?Yaakov Ellis2009-10-18T20:56:35Z2009-10-18T20:56:35ZIt 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).http://stackoverflow.com/questions/1342898/function-to-calculate-median-in-sql-server/1342937#1342937Comment by Yaakov Ellis on Function to Calculate Median in Sql ServerYaakov Ellis2009-08-27T18:46:25Z2009-08-27T18:46:25ZIn case of an even number of items, the median is the average of the two middle items, which is not covered by this UDF.http://stackoverflow.com/questions/1326649/how-do-i-unignore-a-file-in-tortoisesvn/1329992#1329992Comment by Yaakov Ellis on How do I Unignore a file in TortoiseSVN?Yaakov Ellis2009-08-25T18:33:21Z2009-08-25T18:33:21ZWhen the file is ignored, Add no longer shows up as an option in the TortoiseSVN menuhttp://stackoverflow.com/questions/1327548/how-to-change-all-sql-columns-of-one-datatype-into-another/1327573#1327573Comment by Yaakov Ellis on How to Change All Sql Columns of One DataType into AnotherYaakov Ellis2009-08-25T13:17:18Z2009-08-25T13:17:18ZThis doesn't work - SSIS will return an error message stating that the column metadata doesn't match between the source and destination tables