User ChrisHDog - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T00:21:03Z http://stackoverflow.com/feeds/user/25719 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1702717/ado-net-data-services-uploading-files/1718664#1718664 0 Answer by ChrisHDog for ADO.NET Data Services - Uploading files ChrisHDog 2009-11-11T22:52:27Z 2009-11-11T22:52:27Z <p>I'm not 100% sure how to do this directly to a file server per se, but ADO.Net Data Services definitely support something similar to a database. The code below is how a similar goal of putting a file into a database has been accomplished. Not sure how much that will help, but </p> <pre><code>var myDocumentRepositoryUri = new Uri("uri here"); var dataContext = new FileRepositoryEntities(myDocumentRepositoryUri); var myFile = new FileItem(); myfile.Filename = "upload.dat"; myFile.Data = new byte[1000]; // or put whatever file data you want to here dataContext.AddToFileItem(myFile); dataContext.SaveChanges(); </code></pre> <p>Note: this code is also using Entity Framework to create a FileItem (representation of a database table as an object) and to save that data.</p> http://stackoverflow.com/questions/367617/does-linq-support-composable-or-queries 1 Does LINQ Support Composable "OR Queries"? ChrisHDog 2008-12-15T06:46:32Z 2009-11-03T20:02:56Z <p>In another <a href="http://stackoverflow.com/questions/89193/does-linq-to-sql-support-composable-queries">posting: Does Linq-To-Sql support composable queries</a> there was discussion on how to compose/concat where clauses dynamically. This appears to be done with an "AND" (i.e. the first where clause and the second where clause are joined by an AND). What I am wondering is if there is a way to compose Linq queries with an OR.</p> <p>Example:</p> <pre><code>var people = from p in Person where p.age &lt; 18 select p var otherPeople = from p in people where p.firstName equals "Daniel" select p </code></pre> <p>This gives people with a first name of "Daniel" and that are under 18. I'm looking for the syntax to join these to find people who have a first name of "Daniel" or are under 18.</p> <p>Note: I am using ADO.net Data Services so I do not have .Contains() available to me.</p> <p><strong>EDIT</strong>: The Union Suggestion (by Garry Shutler) is exactly what I am looking for funtionality-wise. I did run into two possible issues with it:</p> <ol> <li>It looks like it would make multiple database hits if I was to do a third condition (union seems to take an IEnumerable as its parameter) - I was hoping to build up multiple AND and OR statements in code and then execute one request.</li> <li>Union is not supported by ADO.Net Data Services (very disappointing)</li> </ol> http://stackoverflow.com/questions/1057043/how-do-i-have-spaces-in-a-msbuild-webprojectoutputdir 1 How do I have spaces in a MSBuild WebProjectOutputDir? ChrisHDog 2009-06-29T07:49:23Z 2009-11-03T17:55:12Z <p>I am trying to call MSBuild from a command line. Everything was working fine when I was using a path that had no spaces, but now I have a path that has spaces and the command is failing.</p> <p>Command (works):</p> <pre><code>"C:\Windows\Microsoft.NET\Framework\v3.5\MSBuild.exe" /t:Rebuild "C:\Projects\myProject.csproj" /p:OutDir=c:\temp\deploy\funAndGames\Deployment\bin\ /p:WebProjectOutputDir=c:\temp\deploy\funAndGames\Deployment\ /p:Confguration=Release </code></pre> <p>I then added quotes and changed OutDir to OutPath (doesn't work):</p> <pre><code>"C:\Windows\Microsoft.NET\Framework\v3.5\MSBuild.exe" /t:Rebuild "C:\Projects\myProject.csproj" /p:OutPath="c:\temp\deploy\funAndGames\Deployment\bin\" /p:WebProjectOutputDir="c:\temp\deploy\funAndGames\Deployment\" /p:Confguration=Release </code></pre> <p>What I am aiming for is something like this (doesn't work):</p> <pre><code>"C:\Windows\Microsoft.NET\Framework\v3.5\MSBuild.exe" /t:Rebuild "C:\Projects\myProject.csproj" /p:OutPath="c:\temp\deploy\fun and games\Deployment\bin\" /p:WebProjectOutputDir="c:\temp\deploy\fun and games\Deployment\" /p:Confguration=Release </code></pre> <p>Any help on the syntax around OutDir/OutPath and WebProjectOutputDir with spaces? Is it possible? If it isn't does anyone know what the reason is (due to some Url's not having spaces type thing?)</p> http://stackoverflow.com/questions/1552092/microsoft-build-buildengine-engine-throws-error-when-building-wpf-application 1 Microsoft.Build.BuildEngine.Engine throws error when building WPF application ChrisHDog 2009-10-11T23:36:31Z 2009-10-15T04:17:11Z <p>I am using Microsoft.Build.BuildEngine.Engine to build a WPF application. This has been working successfully for class libraries and web applications, but now trying to use it to build a WPF application I am getting the following error:</p> <blockquote> <p>Target MarkupCompilePass1: c:\Windows\Microsoft.NET\Framework\v3.5\Microsoft.WinFX.targets(294,9): error MC1000: Unknown build error, 'API restriction: The assembly 'file:///C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\v3.0\PresentationCore.dll' has already loaded from a different location. It cannot be loaded from a new location within the same appdomain.' Done building target "MarkupCompilePass1" in project "TestWindowsApplication.csproj" -- FAILED.</p> </blockquote> <p>This application builds fine when building using VisualStudio 2008 (i.e. build from the menu), but using the Microsoft.Build.BuildEngine.Engine it throws this build error. Anyone know what is going on here?</p> http://stackoverflow.com/questions/514754/why-does-publish-fail-in-vs2008-without-an-error-message 2 Why does Publish fail in VS2008 without an error message? ChrisHDog 2009-02-05T06:01:54Z 2009-10-13T14:26:59Z <p>I have a web application that I am trying to build and publish. The odd thing is that when I do clean, build or rebuild everything seems fine. When I do a publish though I get the message that the publish failed, but get no further information:</p> <pre><code>========== Publish: 0 succeeded, 1 failed, 0 skipped ========== </code></pre> <p>If in the copy section I select "All files in the source project folder" it works fine, but if I select "Only files needed to run this application" or "All project files" I get the message that it failed, but without any further information.</p> <p>I am using subversion and if I copy (export) the project and open it outside of source control it does appear to publish correctly. Is there some known interaction with subversion that doesn't let this occur correctly? Is there a work around to get the "Only files needed to run this application" with subversion?</p> <p>Thanks for any assistance</p> http://stackoverflow.com/questions/1558151/how-do-i-control-where-the-output-of-a-clickonce-application-is-built-using-micr 0 How do I control where the output of a ClickOnce application is built (using Microsoft.Build.BuildEngine) to? ChrisHDog 2009-10-13T04:09:03Z 2009-10-13T04:34:08Z <p>I have a ClickOnce WPF application that I am using Microsoft.Build.BuildEngine to build. Everything appears to be working correctly, but when doing a targeted build to publish the application it is putting the published output to .\bin\Release\app.publish</p> <p>This is despite setting the properties "PublishURL", "OutDir", "WebProjectOutputDir" - is there another property that I can set to accomplish this?</p> <p>Is there a way to control where the app.publish directory is created?</p> <pre><code>projectToBuild.SetProperty("OutDir", workingDirectory); projectToBuild.SetProperty("WebProjectOutputDir", workingDirectory); projectToBuild.SetProperty("PublishURL", workingDirectory); projectToBuild.Build("publish"); </code></pre> <p><hr /></p> <p>It looks like it always publishes to "OutputPath"\app.publish I've tried the following:</p> <pre><code>var myOutputPath1 = projectToBuild.GetEvaluatedProperty("OutputPath"); projectToBuild.SetProperty("OutputPath", workingDirectory); var myOutputPath2 = projectToBuild.GetEvaluatedProperty("OutputPath"); </code></pre> <p>Unfortunately myOutputPath1 and myOutputPath2 are the same, it appears the "OutputPath" is not being updated.</p> http://stackoverflow.com/questions/1557745/how-do-i-publish-a-clickonce-application-using-microsoft-build-buildengine 0 How do I publish a ClickOnce application using Microsoft.Build.BuildEngine ChrisHDog 2009-10-13T00:58:31Z 2009-10-13T03:58:53Z <p>I have a WPF, ClickOnce application that I am trying to build using the Microsoft.Build.BuildEngine. </p> <p>I believe my question actually boils down to "how do I do the command line /target:publish using Microsoft.Build.BuildEngine"?</p> <p>I've tried the following</p> <pre><code>projectToBuild.SetProperty("PublishUrl", myPublishUrl); projectToBuild.Targets.AddNewTarget("publish"); </code></pre> <p>but I'm really just guessing at those properties based on the command line properties I'm setting to publish the ClickOnce application.</p> http://stackoverflow.com/questions/1557745/how-do-i-publish-a-clickonce-application-using-microsoft-build-buildengine/1558128#1558128 0 Answer by ChrisHDog for How do I publish a ClickOnce application using Microsoft.Build.BuildEngine ChrisHDog 2009-10-13T03:58:53Z 2009-10-13T03:58:53Z <p>The Targets.AddNewTarget appears to be the mechanism for creating a new target.</p> <p>It appears that the mechanism to build to a target is to use the string parameter on the .Build():</p> <pre><code>projectToBuild.Build("publish"); </code></pre> http://stackoverflow.com/questions/384004/using-linq-how-do-i-have-a-grouping-by-a-calculated-field 3 Using LINQ how do I have a grouping by a "calculated field" ChrisHDog 2008-12-21T02:05:39Z 2009-10-11T23:45:16Z <p>I am using LINQ to EF and have the following LINQ query:</p> <pre><code>var results = (from x in ctx.Items group x by x.Year into decades orderby decades.Count() descending select new { Decade = decades.Key, DecadeCount = decades.Count() }); </code></pre> <p>So this kind of gets me to where I want to be, in that I get the items broken down by year and a count of items in that year. (i.e. 2001 - 10, 1975 - 15, 2005 - 5, 1976 - 1) The thing I really want to do though is to break them down by decade (i.e. 2000s - 15, 1970s - 16).</p> <p>How does one have a "calculated field" in the "by" part of the group clause for a Linq statement. I think what I want is basically something like:</p> <pre><code>var results = (from x in ctx.Items group x by (x =&gt; x.Year.Value.ToString().Substring(0, 3) + "0s") into decades orderby decades.Count() descending select new { Decade = decades.Key, DecadeCount = decades.Count() }); </code></pre> <p>Or more generally the syntax so that I can do some more complicated evaluation/calculation to do the group by on. Any ideas?</p> <p>EDIT (update):</p> <p>(x => x.Year.Value.ToString().Substring(0, 3) + "0s") - Doesn't Work - "LINQ to Entities does not recognize the method 'System.String ToString()' method, and this method cannot be translated into a store expression."</p> <p>(x.Year / 10 * 10) - Functionally works (thank you) - the only "problem" is that the 's' is not on the end (i.e. 1970 vs. 1970s)</p> <p>Is there anyway to put a function in the by clause? i.e. group x by this.ManipulateYear(x.Year) into decades ... or ... x => x.Year.Value.ToString().Substring(0,3) + "0s" ?? It would be nice to have some technique (such as calling a function or using a lambda expression) so that I can cover any case that I can think of.</p> <p>Thanks again for everyone's help on this.</p> http://stackoverflow.com/questions/384004/using-linq-how-do-i-have-a-grouping-by-a-calculated-field/1552111#1552111 0 Answer by ChrisHDog for Using LINQ how do I have a grouping by a "calculated field" ChrisHDog 2009-10-11T23:45:16Z 2009-10-11T23:45:16Z <p>It looks like we cannot do a grouping or select or similar on calculated fields that are definied in the partial classes on the entity framework.</p> <p>The calculated fields can be used on LINQ to objects (so you could return all the data as objects and then do a grouping)</p> http://stackoverflow.com/questions/1541118/what-is-the-recommended-method-to-validate-an-asp-net-control-with-an-existing-me 0 What is the recommended method to Validate an ASP.net Control with an existing method? ChrisHDog 2009-10-08T23:36:20Z 2009-10-08T23:43:06Z <p>I am wondering what the prefered method of validating user input in asp.net using an existing method call is. I have implemented this a couple of ways now and while they all work I get the sense that there might be a better or "optimal" method?</p> <p>I have an asp.net textbox</p> <pre><code>&lt;asp:TextBox ID="myTextBox" runat="server" /&gt; </code></pre> <p>I also have a couple existing methods available to me on the objec that the form will eventually populate and save</p> <pre><code>public static bool IsNameValid() public bool IsValid() </code></pre> <p>I'm wondering how people would wire up those items to a validation control (I'm assuming customValidator?). I'd like to avoid rewriting the validation in JavaScript (to avoid duplication of code).</p> http://stackoverflow.com/questions/530745/is-it-possible-to-serialize-or-create-a-system-web-ui-page-item 0 Is it possible to Serialize or Create a System.Web.UI.Page item? ChrisHDog 2009-02-10T01:10:56Z 2009-10-06T19:05:09Z <p>I have a method that takes a System.Web.UI.Page as an input and returns some application specific details (what "type" of page it is, if certain items are in the query string, etc...). To run a unit test on this I was trying to create a System.Web.UI.Page item (in the code I am able to just send this.Page).</p> <p>First Attempt: Serialization - I tried to serialize the page to a file and then deserialize to create the standard test page. Received many errors about not being able to serialize a Page. Is there anyway to write that object to a file?</p> <p>Second Attempt: new Page() - I tried to just create the page and set the items I was interested in, but all the items I'm interested in appear to be read-only (no setter). Is there some way to create a System.Web.UI.Page programatically?</p> http://stackoverflow.com/questions/1355817/how-do-i-overload-and-operator-for-an-enumeration-in-c 1 How do I overload and operator for an enumeration in C#? ChrisHDog 2009-08-31T04:41:57Z 2009-09-17T14:53:47Z <p>I have an enumerated type that I would like to define the >, &lt;, >=, and &lt;= operators for. I know that these operators are implictly created on the basis of the enumerated type (as per the <a href="http://msdn.microsoft.com/en-us/library/aa664726%28VS.71%29.aspx" rel="nofollow">documentation</a>) but I would like to explictly define these operators (for clarity, for control, to know how to do it, etc...)</p> <p>I was hoping I could do something like:</p> <pre><code>public enum SizeType { Small = 0, Medium = 1, Large = 2, ExtraLarge = 3 } public SizeType operator &gt;(SizeType x, SizeType y) { } </code></pre> <p>But this doesn't seem to work ("unexpected toke") ... is this possible? It seems like it should be since there are implictly defined operators. Any suggestions?</p> http://stackoverflow.com/questions/1345716/wpf-texblock-in-grid-in-listview-not-sizing-correctly 0 WPF TexBlock in Grid in ListView not Sizing Correctly? ChrisHDog 2009-08-28T08:33:31Z 2009-08-30T08:16:19Z <p>I have a TextBlock that is in a Grid that is an ItemTemplate for a ListView. I have the items so that they grow when the window is resized, but I cannot figure out how to have the TextBlock be limited to that size. I've tried to do this with the width on the ColumnDefinition - if I set the Width to a fixed number (say 350) the text wraps correctly, but obviously the TextBlock doesn't expand when the window is expanded - if I set the Width to "*" the there is then a horizontal scroll bar and the text runs off to the right and doesn't wrap.</p> <p>Any idea what I'm doing wrong here?</p> <pre><code>&lt;GroupBox Header="Urgent Items" Margin="8,8,8,340" Name="UrgetItemsGroupBox"&gt; &lt;Grid&gt; &lt;ListView Margin="6" Name="CriticalErrorsListView" HorizontalContentAlignment="Stretch" ItemsSource="{Binding Path=.}" MouseDoubleClick="CriticalErrorsListView_MouseDoubleClick"&gt; &lt;ListView.Background&gt; &lt;LinearGradientBrush EndPoint="-0.192,0.529" StartPoint="0.998,0.519"&gt; &lt;GradientStop Color="#FFD2D2D2" Offset="0"/&gt; &lt;GradientStop Color="#FFFFFFFF" Offset="1"/&gt; &lt;/LinearGradientBrush&gt; &lt;/ListView.Background&gt; &lt;ListView.ItemTemplate&gt; &lt;DataTemplate&gt; &lt;Border Margin="2,2,2,3" BorderBrush="#FF847F6E" CornerRadius="10" BorderThickness="3"&gt; &lt;Grid&gt; &lt;Grid.ColumnDefinitions&gt; &lt;ColumnDefinition Width="30" /&gt; &lt;ColumnDefinition Width="10" /&gt; &lt;ColumnDefinition Width="*" /&gt; &lt;/Grid.ColumnDefinitions&gt; &lt;Grid.RowDefinitions&gt; &lt;RowDefinition Height="25" /&gt; &lt;RowDefinition Height="20" /&gt; &lt;RowDefinition Height="20" /&gt; &lt;RowDefinition Height="75" /&gt; &lt;/Grid.RowDefinitions&gt; &lt;Image Grid.Row="0" Grid.RowSpan="5" Grid.Column="0" Margin="2,2,2,2" Source="Images\errorIcon.png" /&gt; &lt;TextBlock Grid.Row="0" Grid.Column="2" Grid.ColumnSpan="2" Margin="2,2,2,2" Text="{Binding Path=ApplicationName}" FontFamily="Calibri" FontWeight="Bold" FontSize="18" /&gt; &lt;TextBlock Grid.Row="1" Grid.Column="2" Margin="10,2,10,2" Text="{Binding Path=ErrorTime}" FontFamily="Calibri" FontSize="12" /&gt; &lt;TextBlock Grid.Row="2" Grid.Column="2" Margin="10,2,10,2" Text="{Binding Path=ErrorPerson}" FontFamily="Calibri" FontSize="12" /&gt; &lt;TextBlock Grid.Row="3" Grid.Column="2" Margin="2,2,2,2" Text="{Binding Path=ShortDescription}" TextWrapping="Wrap" /&gt; &lt;/Grid&gt; &lt;/Border&gt; &lt;/DataTemplate&gt; &lt;/ListView.ItemTemplate&gt; &lt;/ListView&gt; &lt;/Grid&gt; &lt;/GroupBox&gt; </code></pre> http://stackoverflow.com/questions/1328369/is-it-possible-to-send-an-objects-method-to-a-function 2 Is it possible to send an Object's Method to a Function? ChrisHDog 2009-08-25T13:44:49Z 2009-08-25T16:04:04Z <p>I am wondering if it is possible (and what the syntax would be) to send an object's method to a function.</p> <p>Example:</p> <pre><code>Object "myObject" has two methods "method1" and "method2" </code></pre> <p>I would like to have a function along the lines of:</p> <pre><code>public bool myFunc(var methodOnObject) { [code here] var returnVal = [run methodOnObject here] [code here] return returnVal; } </code></pre> <p>So that in another function I could do something like</p> <pre><code>public void overallFunction() { var myObject = new ObjectItem(); var method1Success = myFunc(myObject.method1); var method2Success = myFunc(myObject.method2); } </code></pre> http://stackoverflow.com/questions/1321190/looping-through-wpf-listview-datetemplate-items 0 Looping through WPF ListView DateTemplate Items ChrisHDog 2009-08-24T08:48:42Z 2009-08-25T09:06:37Z <p>I have a ListView in a Windows Form that I bind a list of objects to on the creation of the form. What I would like to do is on a button click loop through the items that were created and change their IsEnabled property to false. I've tried two methods and neither were particularly successful. Can anyone help fix these up and/or suggest an alternate method?</p> <p>My ListView XAML</p> <pre><code>&lt;ListView Margin="6" Name="myListView" ItemsSource="{Binding Path=.}"&gt; &lt;ListView.ItemTemplate&gt; &lt;DataTemplate&gt; &lt;Grid&gt; &lt;Grid.ColumnDefinitions&gt; &lt;ColumnDefinition Width="10"/&gt; &lt;ColumnDefinition Width="350"/&gt; &lt;ColumnDefinition Width="20"/&gt; &lt;ColumnDefinition Width="350"/&gt; &lt;/Grid.ColumnDefinitions&gt; &lt;Grid.RowDefinitions&gt; &lt;RowDefinition Height="30" /&gt; &lt;RowDefinition Height="30" /&gt; &lt;RowDefinition Height="30" /&gt; &lt;/Grid.RowDefinitions&gt; &lt;TextBlock Name="ItemNameTextBlock" Grid.Row="0" Grid.Column="1" Grid.ColumnSpan="4" VerticalAlignment="Center" Text="{Binding Path=ItemName}" /&gt; &lt;CheckBox Name="Action1CheckBox" Grid.Row="1" Grid.Column="1" Content="Action1" IsChecked="True" /&gt; &lt;CheckBox Name="Action2CheckBox" Grid.Row="1" Grid.Column="3" Content="Action2" IsChecked="True" /&gt; &lt;TextBox Height="23" Name="MyInputTextBox" Grid.Row="2" Grid.Column="1" Margin="2,0,2,0" VerticalAlignment="Top" Width="25" Text="{Binding Path=DataValue}" /&gt; &lt;/Grid&gt; &lt;/DataTemplate&gt; &lt;/ListView.ItemTemplate&gt; &lt;/ListView&gt; </code></pre> <p>Goal: On button press (of an unrelated button) disable the CheckBoxes and the TextBox</p> <p>Attempt 1: This didn't work, the Items are the databound items and I cannot figure out a way to get to the controls themselves to do something like this. Is this even possible?</p> <pre><code>foreach (var item in ReleaseDeployProcessListView.Items) { ((CheckBox)item.FindControl("Action1CheckBox")).IsEnabled = false; } </code></pre> <p>Attempt 2: I added a public property "IsFormElementsEnabled" to the Form and on the button click set this value to false. But I couldn't figure out how/if/what i needed to do to bind that to the items. I tried IsEnabled="{Binding Path=IsFormElementsEnabled} (which doesn't work since it is bound to the objects and that is not party of those obects) and I tried IsEnabled="{Binding Path=this.IsFormElementsEnabled} (which doesn't seem to work either)</p> http://stackoverflow.com/questions/1293638/sql-alter-table-then-modify-values 2 SQL Alter Table then Modify Values ChrisHDog 2009-08-18T12:52:56Z 2009-08-18T12:53:43Z <p>I have a SQL script that I am working on and I run into an issue when I'm creating (or editing) a column and then attempting to modify that new column.</p> <p>For example:</p> <pre><code>BEGIN ALTER TABLE SampleTable ADD ColumnThree int END IF (EXISTS (SELECT * FROM sys.columns WHERE name = 'ColumnThree')) BEGIN UPDATE SampleTable SET ColumnThree = 0 END </code></pre> <p>Now I thought the BEGIN/END blocks would separate those two items out, but I get an error "Invalid column name 'ColumnThree'." when I attempt to run this. Why? Shouldn't the first BEGIN/END set up that ColumnThree and more to the point the IF(EXISTS should protect the UPDATE statement from being run if that column name doesn't exist.</p> <p>What is the correct way to do something like this? (I seem to have a couple of similar scenarios where this is needed).</p> http://stackoverflow.com/questions/1237119/how-do-i-use-microsoft-build-buildengine-to-build-a-silverlight-project 1 How do I use Microsoft.Build.BuildEngine to Build a Silverlight project? ChrisHDog 2009-08-06T05:29:49Z 2009-08-06T23:09:16Z <p>I am using the Microsoft.Build.BuildEngine to build a number of projects. Projects that do not use Silverlight are building correctly while projects that do use Silverlight are not building. All of these projects (Silverlight and non-Silverlight) all build fine through Visual Studio 2008. I get the error message:</p> <blockquote> <p>error CS0234: The type or namespace name 'SilverlightControls' does not exist in the namespace 'System.Web.UI' (are you missing an assembly reference?)</p> </blockquote> <p>I've added System.Web.Silverlight to the project that is doing the build using Microsoft.Build.BuildEngine. I am able to see that namespace in the project doing the build also (so it appears that the project doing the build does have access to System.Web.UI).</p> <p>Any ideas on how I can avoid that error?</p> <p><hr /></p> <p>Turned up the verbosity on the build through VS2008 and compared to the log created from the Microsoft.Build.BuildEngine. It looks like the Microsoft.Build.BuildEngine is producing lines like:</p> <blockquote> <p>Considered "c:\Program Files\Reference Assemblies\Microsoft\Framework \v3.5\System.Web.Silverlight.dll", but it didn't exist.</p> </blockquote> <p>It doesn't exist in that location, should it? There are actually a number of locations that it looks for that dll and doesn't find it. I added the reference by right clicking, add reference, .Net, add. There doesn't appear to be a System.Web.Silverlight.dll on my machine (which is odd because the project does compile using VS2008).</p> <p>Comparing the possibly relevant sections of the two logs: Microsoft.Build.BuildEngine</p> <blockquote> <p>For SearchPath "{GAC}". Considered "System.Web.Silverlight, Version=2.0.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL", which was not found in the GAC.</p> </blockquote> <p>Visual Studio 2008</p> <blockquote> <p>System.Web.Silverlight, Version=2.0.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL</p> </blockquote> <p><hr /></p> <p>Manually added System.Web.Silverlight to the path that the Microsoft.Build.BuildEngine was looking for it (coppied it from the output directory when I build the project via VS2008). This solved that problem, but I now get the following errors on the Silverlight components of the solution:</p> <blockquote> <p>C:\Program Files\MSBuild\Microsoft\Silverlight \v2.0\Microsoft.Silverlight.Common.targets(95,9): error : The Silverlight 2 SDK is not installed.</p> </blockquote> <p>Any ideas?</p> http://stackoverflow.com/questions/1237119/how-do-i-use-microsoft-build-buildengine-to-build-a-silverlight-project/1242015#1242015 1 Answer by ChrisHDog for How do I use Microsoft.Build.BuildEngine to Build a Silverlight project? ChrisHDog 2009-08-06T23:09:16Z 2009-08-06T23:09:16Z <p>In the application that is running the Microsoft.Build.BuildEngine I changed the type of build from Any CPU to x86. This has now made the application be able to build the target as expected.</p> http://stackoverflow.com/questions/494337/how-do-i-use-include-on-a-service-operation-for-ado-net-data-services 1 How do I use ."Include" on a Service Operation for ADO.Net Data Services ChrisHDog 2009-01-30T02:53:52Z 2009-07-23T02:04:10Z <p>I am using ADO.Net Data Services and have a Service Operation that ends up returning the results of some linq to entities statements. As a part of those Linq statements there is a .Include("NavProp") to include a sub-object. When running this service operation it doesn't appear to return that expanded Include. Does anyone know either why that is or how to fix that? Is it possible to add a keyword in the call to the service operation to expand that sub-object? (I tried $expand=subObject but that doesn't seem to work - bad request).</p> <p>I'd like to end up with either: 1.) syntax for a linq statement in a service operation that returns the .Include also (i'm pretty sure this isn't possible)</p> <pre><code>something like: (from c in context.MyObj.Include("SubObj") select c).ToList() (this works inside the service operation, but doesn't provide the SubObj on the client side) </code></pre> <p>or</p> <p>2.) syntax for the service operation request to expand the subObject</p> <pre><code>something like: http://localhost/MyDataService/MyDataService.svc/ServiceOp1?param1=234$expand=SubObj (note: this doesn't work) </code></pre> http://stackoverflow.com/questions/998927/how-do-i-upload-large-25mb-files-to-a-web-service 4 How do I upload large (> 25MB) files to a web service? ChrisHDog 2009-06-15T23:18:01Z 2009-06-30T23:28:35Z <p>I have a web service that takes a byte[] and saves it.</p> <p>This works fine for "small" files, but once I hit a certain size the web service fails and returns "The request failed with HTTP status 404: Not Found."</p> <p>From what I've seen this appears to be an IIS setting that limits the size of a file that can be posted (to prevent Denial of Service attacks). I've tried to increase that setting, but I am having trouble determining what setting and where/how one would set it. I am using IIS7 and the webservice is done in .net (asmx).</p> <p>In the web.config of the web service I have added the following (which seemed to increase the size of file that can be accepted, but not all the way to this setting size)</p> <pre><code> &lt;system.web&gt; &lt;httpRuntime executionTimeout="999999" maxRequestLength="2097151" /&gt; ... &lt;/system.web&gt; </code></pre> <p>Any suggestions on where (and how) to increase the size of file that the web service would be greatly appreciated.</p> http://stackoverflow.com/questions/998927/how-do-i-upload-large-25mb-files-to-a-web-service/1066608#1066608 1 Answer by ChrisHDog for How do I upload large (> 25MB) files to a web service? ChrisHDog 2009-06-30T23:28:35Z 2009-06-30T23:28:35Z <p>In addition to the httpRuntime/maxRequestLength mentioned in the question, it looks like there is an additional item that can be added to the web service's web.config file to permit large file transfers.</p> <pre><code> &lt;system.webServer&gt; &lt;security&gt; &lt;requestFiltering&gt; &lt;requestLimits maxAllowedContentLength="2000000000" /&gt; &lt;/requestFiltering&gt; &lt;/security&gt; &lt;/system.webServer&gt; </code></pre> <p>This appears to enable larger files to be uploaded via web services.</p> http://stackoverflow.com/questions/1016396/what-is-googles-algorithm/1016476#1016476 6 Answer by ChrisHDog for what is google's algorithm? ChrisHDog 2009-06-19T05:33:00Z 2009-06-19T05:33:00Z <p>There is an April Fools description of their algorithm here: <a href="http://www.google.com/technology/pigeonrank.html" rel="nofollow">http://www.google.com/technology/pigeonrank.html</a></p> http://stackoverflow.com/questions/978466/what-has-been-your-greatest-productivity-enhancement/978516#978516 2 Answer by ChrisHDog for What Has Been Your Greatest Productivity Enhancement ChrisHDog 2009-06-10T22:46:11Z 2009-06-10T22:46:11Z <p>a Quiet Workspace</p> <p>The gain of a quiet workspace over a noisy workspace with interuptions is such a massive improvement.</p> http://stackoverflow.com/questions/914182/is-there-any-way-to-find-out-the-size-sizes-of-your-database-tables/914191#914191 4 Answer by ChrisHDog for Is there any way to find out the size / sizes of your database tables? ChrisHDog 2009-05-27T06:06:15Z 2009-05-27T06:18:13Z <pre><code>exec sp_spaceused [tablename] </code></pre> http://stackoverflow.com/questions/851384/is-it-possible-to-make-two-click-method-calls-in-javascript 0 Is it possible to make two .click method calls in javascript ChrisHDog 2009-05-12T06:19:25Z 2009-05-12T07:01:42Z <p>I have the following javascript code:</p> <pre><code>function ClickButtons() { document.getElementById('Button1').click(); document.getElementById('Button2').click(); } </code></pre> <p>only Button2 seems to be clicked. If I reverse the order of the statements then only Button1 (which would be called 2nd then) seems to work.</p> <p>FYI (don't think this is impacting this issue, here for futher information): The button clicks are doing ajax/partial page updates (they call data services and populate data on the page)</p> <p>EDIT: The solution setTimeout works, but puts an lower bound on performance. I've done a bit more looking and the two buttons are asp.net buttons and are inside update panels. If I click them sequentially they work fine, but if i click one and then quickly click a second one (before the first has completed) then the second one will work and the first will fail. This appears to be an issue with update panels and asp.net? Is there anything I can do on that front to enable the above javascript and avoid the setTimeout option?</p> http://stackoverflow.com/questions/796509/how-to-prioritize-bugs/796547#796547 1 Answer by ChrisHDog for How to prioritize bugs? ChrisHDog 2009-04-28T06:56:06Z 2009-04-28T06:56:06Z <p>One option is to have the product owner determine the priority of the bug. While there is some general intuition on how "bad" a bug is, it can be the responsibility of the owner of the product to set an order of precidence (i.e. bug A should be fixed before bug B etc...).</p> <p>The more information (clear and concise) that can be provided to the product owner can assist that individual make those determinations (i.e. how many users have experienced the bug, what features are not available as a result of the bug, etc...)</p> http://stackoverflow.com/questions/190066/what-is-the-best-way-to-use-the-savechanges-method-in-ado-net-data-services 6 What is the best way to use the .SaveChanges() method in ADO.Net Data Services? ChrisHDog 2008-10-10T03:49:53Z 2009-03-30T21:17:39Z <p>Does anyone have some good information on the usage of the .SaveChanges() method?</p> <p>I am experiencing a variety of issues when attempting to use the .SaveChanges() method on my data context object. I am taking data from an existing data source, creating the appropriate EntityFramework/DataService objects, populating those created objects with data, adding those objects to the context and then saving that data by calling .SaveChanges.</p> <p>The scenarios I've come up with (and the problems associated with them) are as such ... In each scenario I have a foreach loop that is taking data from rows in a DataTable and generating the objects, attaching them to the context as they go. (note: three objects a "member" and two "addresses" that are attached via a SetLink call) - basically this is a conversion tool to take data from one data store and massage it into a data store that is exposed by Data Services.</p> <ul> <li>Call .SaveChanges() without any parameters once at the end of the foreach loop (i.e. outside the loop) <ul> <li>OutOfMemory error about 1/3 of the way (30,000 out of 90,000 saves) - not sure how that is happening though as each save item is a seperate SQL call to the database, what is there to run out of memory on?</li> </ul></li> <li>Call .SaveChanges() without any parameters once per loop <ul> <li>This works, but takes absolutly forever (8 hours for 90,000 saves)</li> </ul></li> <li>Call .SaveChanges(SaveChangesOption.Batch) once at the end of the foreach loop <ul> <li>Same OutOfMemory error, but without any saves to the database</li> </ul></li> <li>Call .SaveChanges(SaveChangesOption.Batch) once per loop <ul> <li>404 not found error</li> </ul></li> <li>Call .SaveChanges(SaveChangesOption.Batch) once per 10 loops <ul> <li>400 Bad Request error (occassionally)</li> <li>OutOfMemory after a number of itterations</li> </ul></li> <li>A number of random attempts to create the context once per loop, or have it as a variable at the start of the loop or have it as a private member variable that is available. <ul> <li>Differing results, unable to quantify, none really that good</li> </ul></li> </ul> <p>What is the prefered method of calling .SaveChanges() from a client object when doing a large data load like this? Is there something I'm not getting about how .SaveChanges() works? Can anyone provide more details on how once should be utilizing this function and what (if any) are the limitations to saving data via Data Services? Are there any best practices around the .SaveChanges() method call? Is there any particularly good documentation on the .SaveChanges() method call?</p> http://stackoverflow.com/questions/675493/have-you-ever-turned-down-morally-questionable-or-unethical-web-work/675800#675800 0 Answer by ChrisHDog for Have you ever turned-down morally questionable or unethical web work? ChrisHDog 2009-03-24T00:58:01Z 2009-03-24T00:58:01Z <p>isn't the question more have you ever done anything that you found morally objectionable and what was the incentive/reason you broke with your moral?</p> <p>i'd imagine most people that do things that you find morally objectionable don't find that activity morally objectionable themselves (or have an explenation/reason/delusion that makes it "ok" in their mind). </p> <p>so in some ways it is actually easy to turn down things you find morally objectionable, it might be interesting to see if anyone has broken with their morals and what the reason and results were.</p> http://stackoverflow.com/questions/652456/how-do-i-correctly-cast-an-item-in-a-dataset-when-it-can-potentially-be-null/652469#652469 1 Answer by ChrisHDog for How do I correctly cast an item in a DataSet when it can potentially be null? ChrisHDog 2009-03-16T23:04:16Z 2009-03-16T23:04:16Z <p>You can also do a check for Null being returned by the database as:</p> <pre><code>if (dataRow["Amount"] is System.DBNull.Value) </code></pre> <p>That should enable you to check the value before you attempt to cast it to avoid that error message.</p> http://stackoverflow.com/questions/1552092/microsoft-build-buildengine-engine-throws-error-when-building-wpf-application/1552127#1552127 Comment by ChrisHDog on Microsoft.Build.BuildEngine.Engine throws error when building WPF application ChrisHDog 2009-10-15T01:45:42Z 2009-10-15T01:45:42Z I now have the interesting behavior of not working in all cases (i had it working for one wpf application, but now for a second wpf application) ... I've got the ContinueOnError set to true, but the MarkupCompilePass1 still sais FAILD and then then build fails ... http://stackoverflow.com/questions/1552092/microsoft-build-buildengine-engine-throws-error-when-building-wpf-application/1552127#1552127 Comment by ChrisHDog on Microsoft.Build.BuildEngine.Engine throws error when building WPF application ChrisHDog 2009-10-12T00:12:52Z 2009-10-12T00:12:52Z That looks like it might have worked! Thanks so much. Any idea on why that MarkupCompilePass1 would fail like that though? It just feels a bit like a work-around rather than a fix for me, would be great to get that to compile correctly also. Thanks again for your help! http://stackoverflow.com/questions/1541118/what-is-the-recommended-method-to-validate-an-asp-net-control-with-an-existing-me/1541142#1541142 Comment by ChrisHDog on What is the recommended method to Validate an ASP.net Control with an existing method? ChrisHDog 2009-10-11T23:14:22Z 2009-10-11T23:14:22Z thanks Dillie-O, that is great information - very helpful http://stackoverflow.com/questions/1541118/what-is-the-recommended-method-to-validate-an-asp-net-control-with-an-existing-me/1541142#1541142 Comment by ChrisHDog on What is the recommended method to Validate an ASP.net Control with an existing method? ChrisHDog 2009-10-09T00:33:18Z 2009-10-09T00:33:18Z so you do have to wrap your submission click in an if statement then? is there any method of doing this that you don't have to do that? http://stackoverflow.com/questions/1355817/how-do-i-overload-and-operator-for-an-enumeration-in-c/1355820#1355820 Comment by ChrisHDog on How do I overload and operator for an enumeration in C#? ChrisHDog 2009-08-31T06:15:53Z 2009-08-31T06:15:53Z According to: <a href="http://msdn.microsoft.com/en-us/library/aa664726(VS.71).aspx" rel="nofollow">msdn.microsoft.com/en-us/library/&hellip;</a> ... &quot;Every enumeration type implicitly provides the following predefined comparison operators:&quot; ... I was just hoping there was a way to explicitly provide a comparison operator similarly. So not an overload operator exactly, but something simlar. http://stackoverflow.com/questions/1355817/how-do-i-overload-and-operator-for-an-enumeration-in-c/1355820#1355820 Comment by ChrisHDog on How do I overload and operator for an enumeration in C#? ChrisHDog 2009-08-31T05:12:32Z 2009-08-31T05:12:32Z That is disapointing, how do they do that implictly then? It seemed like there wouldn't be a way, but I figured if you could do it implicitly then there should be a way to do it explictly. I guess not. Thanks for the information. http://stackoverflow.com/questions/1345716/wpf-texblock-in-grid-in-listview-not-sizing-correctly/1353415#1353415 Comment by ChrisHDog on WPF TexBlock in Grid in ListView not Sizing Correctly? ChrisHDog 2009-08-30T23:07:01Z 2009-08-30T23:07:01Z perfect! I had been using the ScrollViewer.HorizontalScrollBarVisibility but not on the ListView itself. Thanks heaps! http://stackoverflow.com/questions/1328369/is-it-possible-to-send-an-objects-method-to-a-function/1328398#1328398 Comment by ChrisHDog on Is it possible to send an Object's Method to a Function? ChrisHDog 2009-08-25T23:00:33Z 2009-08-25T23:00:33Z Great answer, thanks for all the information and details. Voted up, but used other as offical answer as it directly used my example. Sometimes wish there could be 2 accepted answers as combined your two answers give all the details anyone could want for this question. Thanks again! http://stackoverflow.com/questions/1328369/is-it-possible-to-send-an-objects-method-to-a-function/1328489#1328489 Comment by ChrisHDog on Is it possible to send an Object's Method to a Function? ChrisHDog 2009-08-25T22:58:48Z 2009-08-25T22:58:48Z That is great, thanks. I accepted this as the answer as it used my example directly. http://stackoverflow.com/questions/1321190/looping-through-wpf-listview-datetemplate-items/1321736#1321736 Comment by ChrisHDog on Looping through WPF ListView DateTemplate Items ChrisHDog 2009-08-24T13:32:18Z 2009-08-24T13:32:18Z Thanks so much Arcturus, perfect answer to my question. I agree the other answer is probably better (and I've marked it as correct), but I was very curious as to how these other two methods could be accomplished. Thanks again! http://stackoverflow.com/questions/1321190/looping-through-wpf-listview-datetemplate-items/1321222#1321222 Comment by ChrisHDog on Looping through WPF ListView DateTemplate Items ChrisHDog 2009-08-24T09:29:35Z 2009-08-24T09:29:35Z Yes this would definitely work, I was really hoping I could get one of the other two mechanisms to work though. http://stackoverflow.com/questions/1293638/sql-alter-table-then-modify-values/1293643#1293643 Comment by ChrisHDog on SQL Alter Table then Modify Values ChrisHDog 2009-08-18T13:05:04Z 2009-08-18T13:05:04Z Perfect, thanks so much ... also works as (in the event there are multiple items in the first BEGIN/END): BEGIN ALTER TABLE SampleTable ADD ColumnThree int END GO IF (EXISTS (SELECT * FROM sys.columns WHERE name = 'ColumnThree')) BEGIN UPDATE SampleTable SET ColumnThree = 0 END http://stackoverflow.com/questions/1057043/how-do-i-have-spaces-in-a-msbuild-webprojectoutputdir/1057133#1057133 Comment by ChrisHDog on How do I have spaces in a MSBuild WebProjectOutputDir? ChrisHDog 2009-06-29T23:34:40Z 2009-06-29T23:34:40Z unfortunately that doesn't work http://stackoverflow.com/questions/998927/how-do-i-upload-large-25mb-files-to-a-web-service Comment by ChrisHDog on How do I upload large (> 25MB) files to a web service? ChrisHDog 2009-06-16T00:00:09Z 2009-06-16T00:00:09Z Regarding WCF/FTP/WS-Attachment/DIME: Excellent suggestions and some interesting reading. These are probably the types of long term solutions that I will end up using. However if there was some short term solution for changing the upload size in IIS7 that would be excellent. Thanks. http://stackoverflow.com/questions/998927/how-do-i-upload-large-25mb-files-to-a-web-service/998967#998967 Comment by ChrisHDog on How do I upload large (> 25MB) files to a web service? ChrisHDog 2009-06-15T23:48:40Z 2009-06-15T23:48:40Z I changed to these values, same result. The values I have were taken from this (somewhat related/somewhat unrelated) article: <a href="http://support.microsoft.com/kb/925083" rel="nofollow">support.microsoft.com/kb/925083</a> - both value sets seem to have the same issue.