User Will - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T16:35:52Z http://stackoverflow.com/feeds/user/1228 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1813899/cant-save-in-memory-linq-to-sql-entities-without-db-errors 1 Can't save in-memory linq to sql entities without db errors Will 2009-11-28T21:59:41Z 2009-11-28T23:00:41Z <p>I'm stumped. I'm creating multiple linq to sql entities in memory and attempting to save them to the database. Standard boring stuff, Items, Units, Prices with many-to-many relationships among them. You can pretty much guess the Db schema.</p> <p>Now, when I create the entities, I make absolutely sure I only create one per expected record in the DB. For example, I might have one item "Foo" that's related to many Units, but I make sure each of those units is only linked to the single instance of "Foo".</p> <p>The problem is that when I submit changes to the database I'm getting exceptions because I'm attempting to insert two items with the same name (violating a constraint of the db). </p> <p>The fact is that I am NOT doing this. For some reason, Linq to Sql is doing this. Its almost as if, when inserting two different Units with relationships to the same Item, it is attempting to insert that Item twice.</p> <p>How the hell do I get around this? I'm completely baffled. <strong>How do I construct a complex Linq to Sql entity graph in memory and submit all entities to the DB?</strong></p> <p><hr></p> <p>Workaround (<em>does not work, btw</em>):</p> <pre><code>foreach(var item in Items) if(db.Items.Any(x=&gt;x.Name == item.Name)) continue; </code></pre> <p><hr></p> <p>Update:</p> <p>Workaround is a POS and doesn't even work.</p> http://stackoverflow.com/questions/1813889/system-outofmemoryexception-while-writing-400-000-records-to-file/1813928#1813928 0 Answer by Will for 'System.OutOfMemoryException' while writing 400.000 records to file Will 2009-11-28T22:08:21Z 2009-11-28T22:08:21Z <p>How are you reading records from the database? If you're using a RecordSet you could process each record individually instead of bringing them all into memory (ExportList()).</p> http://stackoverflow.com/questions/1491920/visual-studio-2008-creating-new-classes/1798289#1798289 1 Answer by Will for Visual Studio 2008 creating new classes? Will 2009-11-25T16:47:53Z 2009-11-25T16:47:53Z <p>Just to cover all bases...</p> <p>The template for "Code File" is blank and the template for "Class" has what you expect.</p> <p>Are you sure you're selecting the template for Class and not Code File?</p> http://stackoverflow.com/questions/1797348/safely-iterate-an-array-that-can-be-changed-in-another-thread/1797431#1797431 2 Answer by Will for Safely iterate an array that can be changed in another thread Will 2009-11-25T14:51:11Z 2009-11-25T14:51:11Z <p>Target 4.0 and use one of the many <a href="http://geekswithblogs.net/vitus/archive/2009/10/24/thread-safe-data-structures-.net-4.0-part-1.aspx" rel="nofollow">thread safe collections.</a></p> http://stackoverflow.com/questions/1797291/what-is-the-preferred-method-for-building-web-services-in-net/1797318#1797318 0 Answer by Will for What is the preferred method for building web services in .Net? Will 2009-11-25T14:38:25Z 2009-11-25T14:43:26Z <p>IIS is designed for scalability, so I'd definitely consider using ASP.NET web services rather than hosting my web service within a <strong>windows service</strong> using WCF. </p> <p>Of course, you can host your WCF web service within IIS. <a href="http://msdn.microsoft.com/en-us/library/ms733766.aspx" rel="nofollow">Here's an article on how to do this.</a></p> <p><a href="http://msdn.microsoft.com/en-us/library/ms996381.aspx#asmxremotes%5Ftopic11" rel="nofollow">This article is a little old</a>, but it details the benefits of hosting your web service in IIS within the <strong>Recommendations</strong> section:</p> <ul> <li>Scalability—It is very easy to scale out a Web service using load-balancing technology such as Windows Network Load Balancing, or hardware devices from vendors such as Cisco and F5. More on this subject to follow.</li> <li>Availability—ASMX Web services can be configured to be highly available using a combination of technologies such as load-balancing combined with the powerful capabilities of the IIS6 infrastructure built into Windows 2003 Server (such as automatic recycling and restarting of failed services).</li> </ul> <p>I guess the point is no matter if you want to use ASP.NET web services or WCF, definitely host it in IIS.</p> http://stackoverflow.com/questions/1784286/cant-get-the-full-public-key-for-4-0-beta-2-assemblies 0 Can't get the full public key for 4.0 beta 2 assemblies Will 2009-11-23T16:30:23Z 2009-11-24T08:56:33Z <p>I'm having an issue getting the public keys for some of the .net 4.0 beta 2 assemblies so I can make my internals visible to them (gross).</p> <p>Normally, I'd just pop into SN.EXE and poof I'd have them.</p> <p>But instead of getting what I'd normally expect I'm getting a bogus public key, and I'm not sure exactly why.</p> <p>I'm using the 64bit version of SN</p> <blockquote> <p>C:\Program Files\Microsoft SDKs\Windows\v6.0A\Bin\x64>sn.exe</p> </blockquote> <p>I'm using it against the 64bit version of the dll I'm targeting:</p> <blockquote> <p>C:\Windows\Microsoft.NET\Framework64\v4.0.21006\system.xaml.dll</p> </blockquote> <p>and I'm getting this as my output:</p> <blockquote> <p>Public key is 00000000000000000400000000000000</p> <p>Public key token is b77a5c561934e089</p> </blockquote> <p>The token is correct, but the public key is BS. What's going on here??</p> http://stackoverflow.com/questions/1786019/where-did-my-certificate-store-go 0 Where did 'My" certificate store go? Will 2009-11-23T21:15:38Z 2009-11-23T21:15:38Z <p>Because I'm awesome I'm trying to run the latest WIF demo app using VS2k10 B2 on my 7 boxen... 64bit of course (my neckbeard is strong) I'm having a problem getting it running.</p> <p>Part of the whole demo thing requires I install some certificates on the local machine. Problem is that they ask me to install some of the website certs into a certificate store called <strong>LocalMachine/My</strong>. Well, there doesn't appear to be any <strong>/My</strong> anymore. There appears a suspiciously similar store called <em>Personal</em>, but the app doesn't work if I install the certs there and change the configurations to look in <strong>LocalMachine/Personal</strong>.</p> <p>If I install the certs in <strong>TrustedPeople</strong> (it's mentioned as a valid location by the exception that was thrown when I attempted to use Personal), <strong>is that sufficient? Would doing this be considered bad form on a production machine?</strong></p> <p><hr></p> <p>The Windows Identity Foundation test project can be found at: <a href="http://claimsbasedwpf.codeplex.com" rel="nofollow">http://claimsbasedwpf.codeplex.com</a></p> <p>The exception:</p> <blockquote> <p>Property name: 'certificateReference' Error: 'ID1025: Cannot find a unique certificate that matches the criteria. StoreName: 'My' StoreLocation: 'LocalMachine' X509FindType: 'FindBySubjectDistinguishedName' FindValue: 'CN=busta-rpsts.com''</p> </blockquote> http://stackoverflow.com/questions/1783830/can-it-be-advantageous-for-a-method-to-return-iorderedenumerablet-instead-of-ie/1783907#1783907 2 Answer by Will for Can it be advantageous for a method to return IOrderedEnumerable<T> instead of IEnumerable<T>? Will 2009-11-23T15:35:53Z 2009-11-23T15:35:53Z <p>Only if you expect people to order that enumerable every time and would find it hard to figure out how to do this OR if you can provide a collection that implements that interface that can efficiently order its contents and is paired with an extension method that is aware of your collection.</p> <p>Best option is to return a specific collection type (see Richter for details on that). 99 times out of 100 whoever gets even a simple enumerable can use the standard linq extension methods to order it if they want. </p> http://stackoverflow.com/questions/1783771/where-do-you-put-global-variables-in-a-wpf-application/1783813#1783813 3 Answer by Will for Where do you put global variables in a WPF application? Will 2009-11-23T15:24:02Z 2009-11-23T15:24:02Z <p><a href="http://www.blackwasp.co.uk/ApplicationSettings.aspx" rel="nofollow">App.Config</a> (double click the Properties node in the project) for primitives that are user specific (read/write) and application specific (read only).</p> <p>For complex types such as providers (database, logging, etc), there isn't "one" place. But the best pattern today is to use some form of <a href="http://en.wikipedia.org/wiki/Dependency%5Finjection" rel="nofollow">dependency injection</a> such as <a href="http://msdn.microsoft.com/en-us/library/dd140117.aspx" rel="nofollow">Unity</a> or <a href="http://ninject.org/" rel="nofollow">NInject</a>.</p> http://stackoverflow.com/questions/1779716/does-version-control-let-you-work-simultaneously-on-two-different-versions-of-a-p/1779732#1779732 2 Answer by Will for Does version control let you work simultaneously on two different versions of a project? Will 2009-11-22T19:42:38Z 2009-11-22T19:42:38Z <p>Depends on the language and source control used.</p> <p>You can combine code for two different versions of a product by using <a href="http://msdn.microsoft.com/en-us/library/ed8yd1ha.aspx" rel="nofollow">compiler directives</a>. In C#, it would look like:</p> <pre><code>#if shareware DoSharewareCheck(); #endif </code></pre> <p>In this case, if the product is compiled with the specified (<code>shareware</code>) symbol is defined, the code within #if and #endif is compiled. Otherwise, it is ignored.</p> <p>Another alternative is to use <a href="http://en.wikipedia.org/wiki/Branching%5F%28software%29" rel="nofollow">branching</a> in source control. You would create a branch which would specifically contain shareware code. The problem with this is that you have to regularly merge the branches to make sure your code in both is kept up to date. This is much more time consuming than using compiler directives. </p> http://stackoverflow.com/questions/1779220/why-is-linq-to-sql-databinding-to-gridview-much-slower-than-pass-through-sql/1779345#1779345 2 Answer by Will for Why is Linq To Sql databinding to gridview much slower than pass-through SQL? Will 2009-11-22T17:28:19Z 2009-11-22T17:28:19Z <p>Linq to Sql has to figure out from your code what kind of query to run against the database then it has to translate the results of the query into strongly typed objects, which means casting will occur. That's two things your DataSet version doesn't do.</p> <p>If you're interested in Linq to Sql performance, there is the option of using <a href="http://blogs.msdn.com/ricom/archive/2007/06/22/dlinq-linq-to-sql-performance-part-1.aspx" rel="nofollow">compiled queries</a> which removes the need for interpretation at runtime.</p> http://stackoverflow.com/questions/134253/how-many-of-you-do-3-tier-design/134367#134367 -2 Answer by Will for How many of you do 3-tier design? Will 2008-09-25T16:28:19Z 2009-11-22T17:11:53Z <p>DI has replaced tiers for me. Yeah, you can still logically sort providers by tier, but the differences between the logic layer and the database layer have been blurred by other design concerns, IMHO. If you're not sure what I mean, check out the "anemic model" war.</p> http://stackoverflow.com/questions/1738707/threadpool-queueuserworkitem-completed-event/1738720#1738720 4 Answer by Will for ThreadPool.QueueUserWorkItem completed event? Will 2009-11-15T20:30:29Z 2009-11-17T18:25:50Z <p>Nope.</p> <p>You'll have to store the fact you've completed somewhere available to your ASP.NET pages and the method doing your work, like the HttpCache.</p> <p>If this is all happening within a single request, skip the thread pool and check out <a href="http://msdn.microsoft.com/en-us/magazine/cc163725.aspx" rel="nofollow">asynchronous pages.</a></p> <p><hr></p> <p>First, if the file is created per user, then the result of the long running action should be stored in the Session, not the cache. The cache is shared between users, and the session is per-user.</p> <p>The long running task can create the file, then store the file path in the session for that user. Whenever the user sends another request for the file, the session is checked for this file.</p> <p>There are a few options for the UI during this. One is by postbacks to the server, the other is ajax calls.</p> <p>Ajax may not be the easiest, even though there are plenty of frameworks (like jQuery) and lots of information on the net about how to make an asynchronous postback. If the process is very long, users might browse away, etc, making your task harder to implement.</p> <p>Another option is to make your request for the file, then redirect to a holding page. This holding page has a script that automatically refreshes every X seconds. It displays to the user a notification such as "Please wait, creating your file." Every time this page posts back to the server the existence of the file is checked. If its not ready yet, then you return to the holding page. Eventually, the file becomes ready and you can redirect the user to another page where the file is downloaded/displayed/whatever.</p> <p>The second option is probably easier and more straightforward for you to implement. Here's the pseudocode:</p> <ol> <li>User clicks a link to get the file</li> <li>On postback, server redirects to the holding page</li> <li>User's browser is redirected to the holding page</li> <li>Request is handled by the holding page. The Session is checked for the file.<br> <ol> <li>If the session reports the file has not been, and is not being created, the file creation process is started. The holding page is returned to the user.</li> <li>If the session reports the file is being created, the holding page is returned to the user.</li> <li>If the session reports the file is made, the user is redirected to the download page</li> </ol></li> <li>The holding page has a javascript method that runs on load that reloads the page every X seconds.</li> </ol> http://stackoverflow.com/questions/1725821/where-can-i-get-need-help-creating-an-in-memory-instancestore 0 Where can I get/need help creating an in-memory InstanceStore Will 2009-11-12T22:21:01Z 2009-11-17T00:02:26Z <p>I've been doing lots of work recently on the new Workflow 4.0. One of the things that would make it easier to whip together test apps would be an in memory <a href="http://msdn.microsoft.com/en-us/library/system.runtime.persistence.instancestore%28VS.100%29.aspx" rel="nofollow">InstanceStore</a>. One that holds offloaded workflows in memory for a short while.</p> <p>The documentation on how to create a store is pretty anemic, and the interface on it is pretty complex and obscure. Instead of investing a day figuring it out, I'm wondering if anybody knows of either a good explanation of how to implement an InstanceStore, or just some code that does what I'm looking for.</p> http://stackoverflow.com/questions/1735470/how-can-we-assume-a-bool-property-on-a-generict-class-where-t-is-a-auto-gener/1735487#1735487 3 Answer by Will for How can we assume a bool Property on a Generic<T> class , where T is a auto generated LINQ2SQL class Will 2009-11-14T20:27:05Z 2009-11-14T20:27:05Z <p>1) Define ISoftDelete</p> <pre><code>public interface ISoftDelete { bool IsDeleted { get; set; } } </code></pre> <p>2) Create partial classes for all your entities</p> <pre><code>public partial class MyLinqEntity : ISoftDelete { } public partial class MyOtherLinqEntity : ISoftDelete { } public partial class MyFurtherLinqEntity : ISoftDelete { } </code></pre> <p>3) Add your interface to the generic type restriction</p> <pre><code>public abstract class CRUDOperations &lt;T&gt; : where T is ISoftDelete </code></pre> http://stackoverflow.com/questions/1735435/how-to-let-a-worker-thread-update-the-ui-in-window-forms-without-using-control-i/1735468#1735468 1 Answer by Will for how to let a worker thread update the ui in window forms [without using Control.Invoke()] ? Will 2009-11-14T20:20:37Z 2009-11-14T20:20:37Z <p>You could use a <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.timer.aspx" rel="nofollow">Timer</a> to check fields your worker thread is writing to periodically, updating the UI if necessary. That timer runs on the UI thread, so doesn't have to invoke.</p> <p>This is awful a horrible idea and I'm going to punish myself now for suggesting it.</p> http://stackoverflow.com/questions/1728850/linq-to-sql-linked-lists/1729000#1729000 0 Answer by Will for Linq to sql - Linked lists Will 2009-11-13T12:41:04Z 2009-11-13T12:41:04Z <p>All entities created by the Linq to Sql designer (compiled DBML files) are partial classes. So, you can easily add a new class to your solution called Customers like this:</p> <pre><code>public partial class Customer { } </code></pre> <p>in which you can place a couple public properties</p> <pre><code>public partial class Customer { public Report Previous {get { /*...*/ } } public Report Next {get { /*...*/ } } } </code></pre> <p>However, I'd advise against this design. I'd go with whoever is iterating reports to manage what report is next and what report is previous. Another better design would be for the Customer to return a two-way enumerator (my brain is failing me or I'd provide a proper name for the pattern and a link) which you could use to Next or Previous through the collection.</p> <p>If you still want to do it, you can use Skip() and Take() to manage the current position in the Reports entity collection.</p> <pre><code>private int _skip = 0; // in Previous { get { _skip--; if(_skip &lt; 0) _skip = 0; return this.Reports.Skip(_skip).Take(1).FirstOrDefault(); // in Next { get { (not optimized) _skip++; if(_skip &gt;= this.Reports.Count()) _skip--; return this.Reports.Skip(_skip).Take(1).FirstOrDefault(); </code></pre> http://stackoverflow.com/questions/1166089/problem-with-generic-base-controller-error-handling-in-asp-net-mvc 2 Problem with generic base controller error handling in ASP.NET MVC Will 2009-07-22T15:25:02Z 2009-11-13T00:05:03Z <p>I've got a catchall in my base controller that handles errors I don't catch. It goes roughly like this:</p> <pre><code>protected override void OnException(ExceptionContext filterContext) { // Bail if we can't do anything if (filterContext == null) return; // log var ex = filterContext.Exception ?? new Exception("No further information exists."); LogException(ex); filterContext.ExceptionHandled = true; var data = new ErrorPresentation { ErrorMessage = HttpUtility.HtmlEncode(ex.Message), TheException = ex }; filterContext.Result = View("Error", data); base.OnException(filterContext); } </code></pre> <p>Now this works great if the error happens <strong>in the controller</strong>. The issue is that if the error is <strong>during the aspx page rendering</strong> (say, in an HtmlHelper method), the <em>whole</em> error view gets rendered, <strong>in place on the page where the error occurred</strong>. That means that the entire error page (MasterPage and all) gets rendered within the page that's errored. Not exactly the expected behavior.</p> <p>I've tried changing View to a RedirectToAction, but that won't work as a route doesn't exist for every controller (Home/Error, Configuration/Error, etc).</p> <p>How can I get this to work for both errors in the controller AND errors on the page?</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/1724852#1724852 1 Answer by Will for Hidden Features of C#? Will 2009-11-12T19:43:24Z 2009-11-12T19:43:24Z <p>Need to return an empty IEnumerable?</p> <pre><code>public IEnumerable&lt;T&gt; GetEnumerator(){ yield break; } </code></pre> http://stackoverflow.com/questions/1723182/a-regex-that-will-never-be-matched-by-anything/1723236#1723236 -1 Answer by Will for A Regex that will never be matched by anything Will 2009-11-12T15:52:35Z 2009-11-12T16:00:54Z <p>[^.]+</p> <p>At least one or more of something not in the set of all elements.</p> <p><hr></p> <p>Okay, you learn something new every day. At least this works: <code>[^\w\W]+</code></p> http://stackoverflow.com/questions/1722218/xaml-add-existing-control-to-grid/1722278#1722278 1 Answer by Will for Xaml - add existing control to grid Will 2009-11-12T13:45:17Z 2009-11-12T13:45:17Z <p>You CAN'T do this. BTW, the view is all about UI controls and their properties, so saying the view is not allowed to "know about" a property on one of its elements is a bit... extreme. A description of what you are trying to accomplish here might help in providing you with a decent answer.</p> http://stackoverflow.com/questions/1590829/visual-studio-2010-beta-2-known-issues-list/1651226#1651226 0 Answer by Will for Visual Studio 2010 beta 2 known issues list? Will 2009-10-30T17:27:32Z 2009-11-11T14:32:15Z <p>Custom workflow Activities don't show up in the toolbox when in Debug mode on my box. If I switch to release and rebuild they appear.</p> <p><hr></p> <p>Other bugs I've submitted:</p> <p><a href="https://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=503893" rel="nofollow">Context menu position incorrect/extends off screen</a><br> <a href="https://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=508231" rel="nofollow">Strongly-typed dataset designer doesn't globally qualify namespaces</a><br> <a href="https://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=509302" rel="nofollow">SortedList adds an empty entry (key and value both null) in certain situations</a><br> <a href="https://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=509545" rel="nofollow">Xaml editor isn't picking up assembly xmlns definitions nor is giving the option for mapping namespaces to assemblies</a><br> <a href="https://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=509549" rel="nofollow">Workflows can only extend Activity, precluding the use of custom base workflow classes</a><br> <a href="https://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=509593" rel="nofollow">Workflow designer ignores partial class members</a><br> <a href="https://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=509790" rel="nofollow">Tool windows forget what monitor they are on</a><br> <a href="https://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=509804" rel="nofollow">Custom workflow actions don't show in the toolbox in Debug mode</a> </p> http://stackoverflow.com/questions/1709400/are-these-people-lying-about-being-certified 0 Are these people lying about being certified? [closed] Will 2009-11-10T16:46:33Z 2009-11-10T16:55:38Z <p>I'm reviewing some resumes for a position at my company, and lots of the applicants claim that they are a "Microsoft Certified Professional", listing individual exams they have taken. </p> <blockquote> <p>Certifications:<br> Microsoft .NET Framework 3.5 Windows Forms Application Development<br> Microsoft .NET Framework-Application Development Foundation</p> </blockquote> <p>AFAIK, to be "certified" you have to take a NUMBER of tests all towards a certification (such as MCSD). Am I correct in this assumption? Are these people falsely claiming to be certified?</p> http://stackoverflow.com/questions/1703213/c-is-there-an-advantage-to-disposing-resources-in-reverse-order-of-their-alloca/1703237#1703237 2 Answer by Will for C#: Is there an Advantage to Disposing Resources in Reverse Order of their Allocation? Will 2009-11-09T19:36:41Z 2009-11-09T19:36:41Z <p>Don't bother. The GarbageCollector reserves the right to defragment and move objects on the heap, so there's no telling what order things are in.</p> <p>In addition, if you're disposing A and B and A references B it shouldn't matter if A disposes B when you dispose A, since the Dispose method should be callable more than once without an exception being thrown.</p> http://stackoverflow.com/questions/1703190/linq-saving-files-to-a-database/1703229#1703229 0 Answer by Will for LINQ : saving files to a database Will 2009-11-09T19:34:34Z 2009-11-09T19:34:34Z <p>You need to convert these into byte arrays (System.Data.Linq.Binary). One line to load</p> <pre><code>var myMp3 = new Binary(File.ReadAllBytes(mp3Filename)); </code></pre> <p>If you create your database schema (VarBinary in the database) and drag the table over from Server Explorer into the DBML designer, it'll do everything for you.</p> http://stackoverflow.com/questions/1703113/c-simple-file-i-o/1703166#1703166 2 Answer by Will for C# Simple File I/O Will 2009-11-09T19:22:23Z 2009-11-09T19:22:23Z <p>Not bad. Here's some pseudocode:</p> <ol> <li><strong>File.ReadAllLines</strong> to get an array of strings (call this lines)</li> <li>Foreach line in lines <ol> <li>Parse the double (? is each line guaranteed to be an int?)</li> <li>if max &lt; parsed, max = parsed</li> <li>if min > parsed, min = parsed</li> <li>sum += parsed</li> </ol></li> <li>Print out min, max, (sum / lines.count).ToString("000.00")</li> </ol> <p>Assumes the file looks like:</p> <p>25<br> 12<br> 33.5<br> 100<br> 75<br> ...</p> http://stackoverflow.com/questions/1702371/converting-asp-web-form-to-user-control/1702411#1702411 1 Answer by Will for Converting ASP Web Form to User Control Will 2009-11-09T17:14:33Z 2009-11-09T17:14:33Z <p>Depends on the rest of the architecture.</p> <p>Simplest route is to change your inheritance to UserControl. If you're lacking some methods in your custom Page base class, you can duplicate them in your UserControl custom base class.</p> <p>If you're trying to keep it DRY, refactor those custom methods into a class that provides those methods to any Page or UserControl class. You would be using composition rather than inheritance, which can be a better route to follow if your inheritance tree gets deep.</p> <p>Another option is to extract an interface from your custom Page class. <strong>I don't think this would be a good idea</strong>. First, you most likely aren't needing to treat your Pages and your UserControls exactly the same (polymorphism). Second, you'll still have to implement the interface in both custom classes, so you end up breaking DRY anyhow.</p> http://stackoverflow.com/questions/1701482/exception-practices-when-creating-a-synchronizationcontext 1 Exception practices when creating a SynchronizationContext? Will 2009-11-09T14:49:02Z 2009-11-09T15:06:09Z <p>I'm creating an STA version of the <strong>SynchronizationContext</strong> for use in Windows Workflow 4.0. I'm wondering what to do about exceptions when Post-ing callbacks.</p> <p>The <em>SynchronizationContext</em> can be used to <strong>Send</strong> (execute synchronously) or <strong>Post</strong> (execute asynchronously) delegates of type <strong>SendOrPostCallback</strong>. Although in both cases I invoke the delegate on a STA thread, its easy to know how to handle exceptions when executing synchronously. I block the calling thread, Invoke the callback on my worker thread, record any exceptions, unblock the calling thread, and throw any recorded exceptions on the calling thread.</p> <p>What I should do on the asynchronous <strong>Post</strong> is less clear. There is no mechanism for transferring that exception from the executing thread back to the calling thread; <strong>Post</strong> is 100% fire and forget. There is no <em>EndInvoke()</em> or <em>WaitHandle</em> in the <strong>SendOrPostCallback</strong>. Any exceptions thrown will result in the application being torn down.</p> <p>Do I have no choice but to let an exception thrown in a <strong>Post</strong> tear down my application? That seems to be the default behavior in the <em>SynchronizationContexts</em> in the framework (thank you, Reflector). I can't seem to figure out why this is. Shouldn't there be <strong>some</strong> way to prevent asynchronous <strong>Post</strong>s from going boom?</p> http://stackoverflow.com/questions/1700701/wpf-getting-verticalstretch-working-as-expected/1700769#1700769 1 Answer by Will for WPF , Getting verticalstretch working as expected! Will 2009-11-09T12:44:03Z 2009-11-09T12:44:03Z <p>Have you tried setting HorizontalContentAlignment and VerticalContentAlignment to Stretch in the <strong>ItemsControl</strong>? </p> http://stackoverflow.com/questions/1700705/why-isnt-subscribing-to-an-event-on-a-null-object-consistently-throwing-an-excep/1700746#1700746 0 Answer by Will for Why isn't subscribing to an event on a null object consistently throwing an exception? Will 2009-11-09T12:37:09Z 2009-11-09T12:37:09Z <p>Obvious answer: You're not getting a NRE every time because the object isn't null every time. Your assumptions are incorrect, and an in-depth code review probably would reveal what's happening.</p> http://stackoverflow.com/questions/1813899/cant-save-in-memory-linq-to-sql-entities-without-db-errors/1813953#1813953 Comment by Will on Can't save in-memory linq to sql entities without db errors Will 2009-11-28T22:59:29Z 2009-11-28T22:59:29Z I haven't done anything accdientally. I've created entities with guaranteed unique names and am adding them to the db. http://stackoverflow.com/questions/15828/reading-excel-files-from-c/43451#43451 Comment by Will on Reading Excel files from C# Will 2009-11-27T18:31:59Z 2009-11-27T18:31:59Z I won't down you, but I recently started using FileHelpers and was shocked at how ... crappy it is. For instance, the only way to map columns in a csv to properties... excuse me, FIELDS, of a model is <i>to create the fields in the order of the columns</i>. I don't know about you, but I wouldn't rely on a quirk of the compiler for one of the most central design considerations of my f8king framework. http://stackoverflow.com/questions/15828/reading-excel-files-from-c/43236#43236 Comment by Will on Reading Excel files from C# Will 2009-11-27T18:29:33Z 2009-11-27T18:29:33Z A++++ would let some other poor sombitch write it for me again. http://stackoverflow.com/questions/15828/reading-excel-files-from-c/15839#15839 Comment by Will on Reading Excel files from C# Will 2009-11-27T18:27:50Z 2009-11-27T18:27:50Z Of course that's not true, Stingy. You have to sift through all the data and write crappy DB code (hand craft your models, map columns to properties, yadda yadda). The quickest way is to let <i>some other poor SOB do this for you</i>. That's why people use frameworks instead of writing everything from the bottom up. http://stackoverflow.com/questions/1481130/wpf-binding-to-local-variable/1481176#1481176 Comment by Will on WPF Binding to local variable Will 2009-11-27T18:24:31Z 2009-11-27T18:24:31Z There's nothing automatic about INPC. You have to do all the heavy lifting. But that would be silly in this instance as he's binding to the Window, which is, in fact, a DependencyObject and supports DP's out of the box. So advising him to implement INPC would be like an unsharpened pencil. http://stackoverflow.com/questions/1797348/safely-iterate-an-array-that-can-be-changed-in-another-thread/1797385#1797385 Comment by Will on Safely iterate an array that can be changed in another thread Will 2009-11-25T14:50:12Z 2009-11-25T14:50:12Z Interesting... I'd think System.Array would provide this just so that behavior would be widely implemented. http://stackoverflow.com/questions/1797378/some-upvotes-please Comment by Will on Some upvotes please Will 2009-11-25T14:48:01Z 2009-11-25T14:48:01Z DO NOT CLOSE THIS. Let's pull him down to 1 point! http://stackoverflow.com/questions/1797348/safely-iterate-an-array-that-can-be-changed-in-another-thread/1797385#1797385 Comment by Will on Safely iterate an array that can be changed in another thread Will 2009-11-25T14:47:15Z 2009-11-25T14:47:15Z If you've got an iterator to a collection and that collection changes (on another thread) doesn't the iterator throw? http://stackoverflow.com/questions/1797222/microsoft-certification-exams-70-562 Comment by Will on Microsoft Certification Exams 70-562 Will 2009-11-25T14:45:52Z 2009-11-25T14:45:52Z BRB, taking 70-562 http://stackoverflow.com/questions/1797291/what-is-the-preferred-method-for-building-web-services-in-net/1797318#1797318 Comment by Will on What is the preferred method for building web services in .Net? Will 2009-11-25T14:41:48Z 2009-11-25T14:41:48Z Hmmmm... I normally don't think of WCF hosted in IIS. I'll edit to add some details on that. Thanks. http://stackoverflow.com/questions/1791511/run-exe-from-client-side Comment by Will on Run EXE FROM CLIENT SIDE Will 2009-11-24T17:24:51Z 2009-11-24T17:24:51Z I threw up a little in my mouth reading this question. http://stackoverflow.com/questions/1784286/cant-get-the-full-public-key-for-4-0-beta-2-assemblies/1788769#1788769 Comment by Will on Can't get the full public key for 4.0 beta 2 assemblies Will 2009-11-24T17:11:02Z 2009-11-24T17:11:02Z It doesn't work is what happens. The reason why is a bit complex; I'm trying to keep some components out of the toolbox in WF 4.0.... essentially, its for deserialization of internal types, which the new xaml object deserializer chokes on. Figured if I selectively made my internal types visible to some framework assemblies it might solve that issue... http://stackoverflow.com/questions/445050/how-can-i-cache-objects-in-asp-net-mvc/445317#445317 Comment by Will on How can I cache objects in ASP.NET MVC? Will 2009-11-24T17:00:53Z 2009-11-24T17:00:53Z +1 to Andrei. That was &quot;c#-like pseudocode&quot;, by which I mean I wrote it from memory and isn't necessarily the best code or bug-free. http://stackoverflow.com/questions/1784286/cant-get-the-full-public-key-for-4-0-beta-2-assemblies/1788769#1788769 Comment by Will on Can't get the full public key for 4.0 beta 2 assemblies Will 2009-11-24T14:06:13Z 2009-11-24T14:06:13Z Nice. +1 for the info. Any idea why I can't get the internals attribute working with this public key? http://stackoverflow.com/questions/106880/internalsvisibleto-attribute-aint-workin/107958#107958 Comment by Will on InternalsVisibleTo attribute ain't workin'! Will 2009-11-23T16:37:31Z 2009-11-23T16:37:31Z -1000 for the MSDN docs on this, which are still incomplete.