User Yaakov Ellis - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T07:21:29Z http://stackoverflow.com/feeds/user/51 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1826658/what-is-faster-or-preferred-ienumerable-toarray-or-tolist/1826676#1826676 10 Answer by Yaakov Ellis for What is faster or preferred: IEnumerable<>.ToArray() or .ToList()? Yaakov Ellis 2009-12-01T14:50:31Z 2009-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&lt;>?</p> http://stackoverflow.com/questions/1825032/project-code-managment-using-svn/1825060#1825060 1 Answer by Yaakov Ellis for Project code managment using SVN Yaakov Ellis 2009-12-01T09:37:25Z 2009-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#1824993 2 Answer by Yaakov Ellis for No Form.Submit() function in VB.NET or C#? Yaakov Ellis 2009-12-01T09:23:29Z 2009-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#1818604 2 Answer by Yaakov Ellis for fill typed dataset by accessing columns directly? Yaakov Ellis 2009-11-30T08:56:31Z 2009-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#1818338 4 Answer by Yaakov Ellis for C# How can I destroy a temporary string array before it gets garbage collected? Yaakov Ellis 2009-11-30T07:36:24Z 2009-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-unresponsive 0 Why would bulk Inserts cause an ASP.net application to become Unresponsive? Yaakov Ellis 2009-11-24T15:08:27Z 2009-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-expression 0 How can I reuse a Common Table Expression Yaakov Ellis 2009-11-26T06:58:19Z 2009-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#1796942 0 Answer by Yaakov Ellis for Why would bulk Inserts cause an ASP.net application to become Unresponsive? Yaakov Ellis 2009-11-25T13:34:41Z 2009-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#1748015 1 Answer by Yaakov Ellis for single character domain names Yaakov Ellis 2009-11-17T10:46:47Z 2009-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#1742091 0 Answer by Yaakov Ellis for How to put row number for sql query in sql 2000 where rownumber() is not supporting? Yaakov Ellis 2009-11-16T13:07:16Z 2009-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#1717637 4 Answer by Yaakov Ellis for Prevent .NET from writing to C:\Windows\Temp Yaakov Ellis 2009-11-11T19:52:57Z 2009-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#1717476 3 Answer by Yaakov Ellis for jquery: looking for a lightweight wysiwyg editor Yaakov Ellis 2009-11-11T19:27:46Z 2009-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#1717432 1 Answer by Yaakov Ellis for Issues with the App_code folder Yaakov Ellis 2009-11-11T19:16:45Z 2009-11-11T19:16:45Z <p>I would consider moving all of your code out of App&#95;Code (and the /OldProject/App&#95;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-key 1 Is there any reason not to join Foreign Key to Foreign Key? Yaakov Ellis 2009-11-11T12:10:40Z 2009-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-net 0 Problem accessing file from different thread in Asp.net Yaakov Ellis 2008-09-23T11:26:12Z 2009-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-file 0 Retrieve List of Tables in MS Access File Yaakov Ellis 2009-11-09T09:12:00Z 2009-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#1699928 0 Answer by Yaakov Ellis for Retrieve List of Tables in MS Access File Yaakov Ellis 2009-11-09T09:19:43Z 2009-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&lt;string&gt; tableNames = new List&lt;string&gt;(); for (int i=0; i &lt; 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#1696354 1 Answer by Yaakov Ellis for How to do a lot of database queries with less performance? Yaakov Ellis 2009-11-08T12:59:26Z 2009-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#1672333 0 Answer by Yaakov Ellis for A minimal MVC setup for ASP.NET 2.0 Yaakov Ellis 2009-11-04T08:11:03Z 2009-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#1620924 1 Answer by Yaakov Ellis for LINQ-To-SQL OrderBy with DateTime Not Working Yaakov Ellis 2009-10-25T13:29:43Z 2009-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 =&gt; x.TIMECARDDATE).ToList() </code></pre> http://stackoverflow.com/questions/1585993/perform-data-analysis-on-sql-server-or-in-net 0 Perform Data Analysis on Sql Server or in .Net? Yaakov Ellis 2009-10-18T20:49:07Z 2009-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-component 0 .Net Powerpoint Component Yaakov Ellis 2009-10-16T08:04:39Z 2009-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-server 1 Function to Calculate Median in Sql Server Yaakov Ellis 2009-08-27T18:24:33Z 2009-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-powershell 16 How do you use PowerShell? Yaakov Ellis 2008-08-12T12:04:14Z 2009-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-tortoisesvn 4 How do I Unignore a file in TortoiseSVN? Yaakov Ellis 2009-08-25T07:47:52Z 2009-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-another 2 How to Change All Sql Columns of One DataType into Another Yaakov Ellis 2009-08-25T11:06:22Z 2009-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-project 1 Access App.Config Settings from Class Library Called through Unit Test Project Yaakov Ellis 2009-08-23T12:10:46Z 2009-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#1318501 2 Answer by Yaakov Ellis for Access App.Config Settings from Class Library Called through Unit Test Project Yaakov Ellis 2009-08-23T12:56:40Z 2009-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-required 0 Windows Forms Error: "A strongly-named assembly is required" Yaakov Ellis 2008-11-14T18:41:42Z 2009-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-appropriate 6 Are Multiple DataContext classes ever appropriate? Yaakov Ellis 2008-08-05T05:54:34Z 2009-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#1826709 Comment by Yaakov Ellis on What is faster or preferred: IEnumerable<>.ToArray() or .ToList()? Yaakov Ellis 2009-12-01T15:18:46Z 2009-12-01T15:18:46Z According to reflector, List&lt;&gt;, ArrayList&lt;&gt; 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#1826709 Comment by Yaakov Ellis on What is faster or preferred: IEnumerable<>.ToArray() or .ToList()? Yaakov Ellis 2009-12-01T14:59:39Z 2009-12-01T14:59:39Z 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. http://stackoverflow.com/questions/1818578/fill-typed-dataset-by-accessing-columns-directly/1818604#1818604 Comment by Yaakov Ellis on fill typed dataset by accessing columns directly? Yaakov Ellis 2009-11-30T09:02:35Z 2009-11-30T09:02:35Z 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. http://stackoverflow.com/questions/1790677/why-would-bulk-inserts-cause-an-asp-net-application-to-become-unresponsive/1790703#1790703 Comment by Yaakov Ellis on Why would bulk Inserts cause an ASP.net application to become Unresponsive? Yaakov Ellis 2009-11-24T15:31:03Z 2009-11-24T15:31:03Z Added responses above to some of your suggestions http://stackoverflow.com/questions/1717574/prevent-net-from-writing-to-c-windows-temp/1717637#1717637 Comment by Yaakov Ellis on Prevent .NET from writing to C:\Windows\Temp Yaakov Ellis 2009-11-12T11:59:34Z 2009-11-12T11:59:34Z Edited 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#1717244 Comment by Yaakov Ellis on Is there any reason not to join Foreign Key to Foreign Key? Yaakov Ellis 2009-11-11T19:09:49Z 2009-11-11T19:09:49Z 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). http://stackoverflow.com/questions/1714800/is-there-any-reason-not-to-join-foreign-key-to-foreign-key/1714838#1714838 Comment by Yaakov Ellis on Is there any reason not to join Foreign Key to Foreign Key? Yaakov Ellis 2009-11-11T12:29:09Z 2009-11-11T12:29:09Z Yeah - 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#1714838 Comment by Yaakov Ellis on Is there any reason not to join Foreign Key to Foreign Key? Yaakov Ellis 2009-11-11T12:19:24Z 2009-11-11T12:19:24Z 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) http://stackoverflow.com/questions/1714800/is-there-any-reason-not-to-join-foreign-key-to-foreign-key/1714825#1714825 Comment by Yaakov Ellis on Is there any reason not to join Foreign Key to Foreign Key? Yaakov Ellis 2009-11-11T12:18:07Z 2009-11-11T12:18:07Z &quot;The index most definitely affects performance&quot; - so then I should join with Schools? &quot;All tables have their PK and FK columns properly declared and defined&quot; - 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-file Comment by Yaakov Ellis on Retrieve List of Tables in MS Access File Yaakov Ellis 2009-11-10T04:25:05Z 2009-11-10T04:25:05Z At 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#1620924 Comment by Yaakov Ellis on LINQ-To-SQL OrderBy with DateTime Not Working Yaakov Ellis 2009-10-25T19:19:55Z 2009-10-25T19:19:55Z 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. http://stackoverflow.com/questions/1585993/perform-data-analysis-on-sql-server-or-in-net Comment by Yaakov Ellis on Perform Data Analysis on Sql Server or in .Net? Yaakov Ellis 2009-10-18T20:56:35Z 2009-10-18T20:56:35Z 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). http://stackoverflow.com/questions/1342898/function-to-calculate-median-in-sql-server/1342937#1342937 Comment by Yaakov Ellis on Function to Calculate Median in Sql Server Yaakov Ellis 2009-08-27T18:46:25Z 2009-08-27T18:46:25Z 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. http://stackoverflow.com/questions/1326649/how-do-i-unignore-a-file-in-tortoisesvn/1329992#1329992 Comment by Yaakov Ellis on How do I Unignore a file in TortoiseSVN? Yaakov Ellis 2009-08-25T18:33:21Z 2009-08-25T18:33:21Z When the file is ignored, Add no longer shows up as an option in the TortoiseSVN menu http://stackoverflow.com/questions/1327548/how-to-change-all-sql-columns-of-one-datatype-into-another/1327573#1327573 Comment by Yaakov Ellis on How to Change All Sql Columns of One DataType into Another Yaakov Ellis 2009-08-25T13:17:18Z 2009-08-25T13:17:18Z This doesn't work - SSIS will return an error message stating that the column metadata doesn't match between the source and destination tables