User Christian Hagelid - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T23:03:21Z http://stackoverflow.com/feeds/user/202 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/25921/what-is-asp-net/25940#25940 6 Answer by Christian Hagelid for What is ASP.NET? Christian Hagelid 2008-08-25T12:23:55Z 2009-12-07T19:19:24Z <p>I was going to write a lengthy answer but I felt that <a href="http://en.wikipedia.org/wiki/Asp.net" rel="nofollow">Wikipedia had it covered</a>:</p> <blockquote> <p><a href="http://www.asp.net/" rel="nofollow">ASP.NET</a> is a web application framework developed and marketed by Microsoft, that programmers can use to build dynamic web sites, web applications and web services. It was first released in January 2002 with version 1.0 of the .NET Framework, and is the successor to Microsoft's Active Server Pages (ASP) technology. ASP.NET is built on the Common Language Runtime (CLR), allowing programmers to write ASP.NET code using any supported .NET language.</p> </blockquote> <p>So ASP.NET is Microsoft's web development framework. It's currently in version 3.5 (<a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=ab99342f-5d1a-413d-8319-81da479ab0d7&amp;DisplayLang=en" rel="nofollow">Service Pack 1</a> has just been released).</p> <p>How do I get started? Check out the following resources:</p> <ul> <li><a href="http://www.asp.net/learn/" rel="nofollow">Learn ASP.NET</a></li> <li><a href="http://msdn.microsoft.com/en-us/library/ms644563.aspx" rel="nofollow">ASP.NET Documentation</a></li> <li><a href="http://msdn.microsoft.com/en-us/asp.net/default.aspx" rel="nofollow">ASP.NET Developer Senter</a></li> </ul> http://stackoverflow.com/questions/4432/csv-string-handling 3 CSV string handling Christian Hagelid 2008-08-07T05:49:04Z 2009-12-01T17:44:34Z <p>Typical way of creating a <a href="http://en.wikipedia.org/wiki/Comma-separated%5Fvalues" rel="nofollow">CSV</a> string (pseudocode):</p> <ol> <li>create a CSV container object (like a StringBuilder in C#)</li> <li>Loop through the strings you want to add appending a comma after each one</li> <li>After the loop, remove that last superfluous comma.</li> </ol> <p>Code sample:</p> <pre><code> public string ReturnAsCSV(ContactList contactList) { StringBuilder sb = new StringBuilder(); foreach (Contact c in contactList) { sb.Append(c.Name + ","); } sb.Remove(sb.Length - 1, 1); //sb.Replace(",", "", sb.Length - 1, 1) return sb.ToString(); } </code></pre> <p>I feel that there should be an easier / cleaner / more efficient way of removing that last comma. Any ideas?</p> <p><strong>Update</strong></p> <p>I like the idea of adding the comma by checking if the container is empty, but doesn't that mean more processing as it needs to check the length of the string on each occurrence?</p> http://stackoverflow.com/questions/12986/microsoft-certification-exams 4 Microsoft Certification Exams Christian Hagelid 2008-08-16T04:15:36Z 2009-10-27T17:07:36Z <p>Not a very 'techy' question but certainly relevant in our field. What are your oppinions on them? Are they valuable or have they lost their meaning with all the readily available cramming / braindump tools out there.</p> <p>I'm curious as both my previous and current employer wants the developers to sit these exams. Although I'm sure they would like developers that are skilled up on the latest techniques and tool-sets, I think that their motivation comes from the partner points that are assiciated with having certified developers on the team.</p> <p>I currently have an <a href="http://www.microsoft.com/learning/mcp/mcts/webapps/default.mspx" rel="nofollow">MCTS: .NET Framework 2.0 Web Applications</a> certification and was planning to take the last exam towards the <a href="http://www.microsoft.com/learning/mcp/mcpd/webdev/default.mspx" rel="nofollow">professional developer</a> title. My issue now is do I take this MCPD exam for the .NET 2.0 track or do I start afresh with the newly released <a href="http://www.microsoft.com/learning/mcp/vstudio/2008/" rel="nofollow">.NET 3.5 exams</a>.</p> <p><strong>Update</strong> : Just found that a <a href="http://beta.stackoverflow.com/questions/7113/is-it-worth-it-to-get-ms-certified#7135" rel="nofollow">similar question</a> has already been asked and answered.</p> http://stackoverflow.com/questions/1483652/wpf-combobox-binding-behaviour 2 WPF ComboBox binding behaviour Christian Hagelid 2009-09-27T14:13:20Z 2009-10-09T20:37:46Z <p>I have the following XAML markup:</p> <pre><code>&lt;TextBox x:Name="MyTextBox" Text="{Binding Path=SelectedCustomer.FavouriteProduct.ProductNumber, UpdateSourceTrigger=PropertyChanged}" /&gt; &lt;ComboBox x:Name="MyComboBox" ItemsSource="{Binding Products}" DisplayMemberPath="ProductName" SelectedValue="{Binding Path=SelectedCustomer.FavouriteProduct.ProductNumber}" SelectedValuePath="ProductNumber" /&gt; </code></pre> <p>My View's DataContext is bound to a viewmodel containing a public property called SelectedCustomer. Customer objects contain a FavouriteProduct property of type Product and Product objects contain public properties ProductNumber and ProductName.</p> <p>The behaviour I'm looking for is to have the SelectedItem of the ComboBox update the Text in the TextBox and vice versa. ComboBox to TextBox works just fine. Selecting any product in the ComboBox updates the TextBox with the product number of that product. However when I try to go the other way I get som strange behaviour. It only works for the items that come before the selected item. I will try to explain:</p> <p>Consider the following list of products ([Product Number], [Product Name]):</p> <ol> <li>Fanta</li> <li>Pepsi</li> <li>Coca Cola</li> <li>Sprite</li> <li>Water</li> </ol> <p>Now lets say that the SelectedCustomer's favourite product is Coca Cola (must be a developer). So when the window opens the TextBox reads 3 and the ComboBox reads Coca Cola. Lovely. Now lets change the product number in the TextBox to 2. The ComboBox updates it's value to Pepsi. Now try to change the product number in the TextBox to anything higher then the number for Coca Cola (3). Not so lovely. Selecting either 4 (Sprite) or 5 (Water) makes the ComboBox revert back to Coca Cola. So the behaviour seems to be that anything below the item that you open the window width from the list in the ItemSource does not work. Set it to 1 (Fanta) and none of the others work. Set it to 5 (Water) and they all work. Could this have to do with some initialisation for the ComboBox? Potential bug? Curious if anyone else have seen this behaviour.</p> <p><strong>UPDATE:</strong></p> <p>After reading Mike Brown's response I have created properties for SelectedProduct and SelectedProductNumber. The problem I am having with this is that as soon as you select something from the ComboBox you end up in an endless loop where the properties keep updatign each other. Have I implemented the OnPropertyChanged handler incorrectly or is there something I am missing? Here is a snippet of code from my ViewModel:</p> <pre><code>private int _SelectedProductNumber = -1; public int SelectedProductNumber { get { if (_SelectedProductNumber == -1 &amp;&amp; SelectedCustomer.Product != null) _SelectedProductNumber = SelectedCustomer.Product.ProductNumber; return _SelectedProductNumber; } set { _SelectedProductNumber = value; OnPropertyChanged("SelectedProductNumber"); _SelectedProduct = ProductList.FirstOrDefault(s =&gt; s.ProductNumber == value); } } private Product _SelectedProduct; public Product SelectedProduct { get { if (_SelectedProduct == null) _SelectedProduct = SelectedCustomer.Product; return _SelectedProduct; } set { _SelectedProduct = value; OnPropertyChanged("SelectedProduct"); _SelectedProductNumber = value.ProductNumber; } } public event PropertyChangedEventHandler PropertyChanged; protected virtual void OnPropertyChanged(string property) { if (PropertyChanged != null) PropertyChanged(this, new PropertyChangedEventArgs(property)); } </code></pre> <p><strong>UPDATE 2</strong></p> <p>I have changed the implementation slightly now by updating the SelectedCustomer.FavouriteProduct from both properties and then using that when reading their values. This now works but I'm not sure it's the 'correct way'.</p> <pre><code>private int _SelectedProductNumber = 0; public int SelectedProductNumber { get { if (SelectedCustomer.Product != null) _SelectedProductNumber = SelectedCustomer.Product.ProductNumber; return _SelectedProductNumber; } set { _SelectedProductNumber = value; SelectedCustomer.FavouriteProduct = ProductList.FirstOrDefault(s =&gt; s.ProductNumber == value); OnPropertyChanged("SelectedProductNumber"); OnPropertyChanged("SelectedProduct"); } } private Product _SelectedProduct; public Product SelectedProduct { get { if (SelectedCustomer.Product != null) _SelectedProduct = SelectedCustomer.Product; return _SelectedProduct; } set { _SelectedProduct = value; SelectedCustomer.FavouriteProduct = value; OnPropertyChanged("SelectedProduct"); OnPropertyChanged("SelectedProductNumber"); } } </code></pre> http://stackoverflow.com/questions/181597/what-are-the-naming-guidelines-for-asp-net-controls 6 What are the naming guidelines for ASP.NET controls? Christian Hagelid 2008-10-08T06:55:58Z 2009-05-31T23:27:05Z <p>We are in the process of nutting out the design guidelines we would like to use in our development team and got into a discussion today around how ASP.NET controls should be named. I am talking about our good friends Label, TextBox, Button etc.</p> <p>We came up with the following three possibilities that we voted on: (Example is a TextBox to enter/display a FirstName)</p> <ol> <li>Add the control type as a postfix to your controls ID: [FirstName<code>_</code>TextBox] or [FirstName<code>_</code>tbx]</li> <li>Add the control type as a prefix to your controls ID [tbxFirstName]</li> <li>Set the ID of the control to FirstName and name related fields (like a label for the textbox or a validator) as in option 2 [lblTextBox].</li> </ol> <p>We ended up deciding to use option 2. It's not as verbose as option 1 and I like that it specifies what control it is before the name of the control.</p> <p>My question is whether Microsoft has released any guidelines for these prefixes and or if you have any comments about our decision.</p> http://stackoverflow.com/questions/880192/asp-net-session-state/880290#880290 0 Answer by Christian Hagelid for asp.net session state Christian Hagelid 2009-05-18T23:30:15Z 2009-05-18T23:30:15Z <p>from <a href="http://msdn.microsoft.com/en-us/library/ms524689.aspx" rel="nofollow">the documentation</a></p> <blockquote> <p>The <strong>Session_OnEnd</strong> event occurs when a session is abandoned or times out. Of the Server built-in objects, only the Application Object, Server Object, and Session Object objects are available. </p> <p><strong>Remarks</strong></p> <p>You cannot call the Server.MapPath method in the Session_OnEnd script. By default, Session_OnEnd runs as the Anonymous User, as defined for the application. In the event that there isn't an Anonymous user, or the Logon for the Anonymous user fails, the OnEnd function will not be called, and an event will be logged.</p> </blockquote> http://stackoverflow.com/questions/876240/xpath-cant-find-a-table-by-id/876245#876245 -3 Answer by Christian Hagelid for XPath can't find a table by id Christian Hagelid 2009-05-18T04:26:50Z 2009-05-18T04:26:50Z <p>I'm not sure but I think you might have to replace the single quotes around searchResult with double quotes</p> <pre><code>String expression = "//table[@id=\"searchResult\"]"; </code></pre> <p>not even sure if that's have you would escape the double quotes!</p> http://stackoverflow.com/questions/876228/vs2008-is-slow-in-a-development-environment-that-is-disconnected-from-the-interne/876241#876241 1 Answer by Christian Hagelid for VS2008 is slow in a development environment that is disconnected from the internet Christian Hagelid 2009-05-18T04:22:08Z 2009-05-18T04:22:08Z <p>Have a look at this thread <a href="http://stackoverflow.com/questions/8440/visual-studio-optimizations">http://stackoverflow.com/questions/8440/visual-studio-optimizations</a></p> <p>Especially the point about disabling F1</p> http://stackoverflow.com/questions/875795/skipping-items-during-data-binding/875841#875841 3 Answer by Christian Hagelid for Skipping Items During Data Binding Christian Hagelid 2009-05-18T00:38:14Z 2009-05-18T00:38:14Z <p>You could investigate the current DataItem in the OnItemDataBound() method of the repeater and skip processing that item if it matches your criteria</p> http://stackoverflow.com/questions/866423/how-to-use-environment-variables-within-visual-studio-2008-project-properties/866466#866466 0 Answer by Christian Hagelid for How to use environment variables within Visual Studio 2008 project properties? Christian Hagelid 2009-05-15T00:02:42Z 2009-05-15T00:02:42Z <p>quoted by Microsoft <a href="http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=368148" rel="nofollow">here</a>:</p> <blockquote> <p>Unfortunately this is by design. We do not support using environment variables in the UI however you can edit the file manually in notepad and specify variable names as you were trying $(varname). This workaround will not enable you to make edits to the property in the project properties however.</p> </blockquote> <p>so changing the OutputPath property in your project file to:</p> <pre><code>&lt;OutputPath&gt;$(ProgramFiles)\MyCompany\MyApp\&lt;/OutputPath&gt; </code></pre> <p>will work but all it does (as you can see when you open the project again in Visual Studio and look at the project properties) is include the relative path from your solution dir to the output dir.</p> http://stackoverflow.com/questions/866325/variable-assignment-in-t-sql/866336#866336 2 Answer by Christian Hagelid for Variable Assignment in T-SQL Christian Hagelid 2009-05-14T23:13:00Z 2009-05-14T23:13:00Z <p>change this line</p> <pre><code>@Result = 'Unknown' </code></pre> <p>to</p> <pre><code>set @Result = 'Unknown' </code></pre> http://stackoverflow.com/questions/861982/datatextfield-in-a-listbox-is-a-combination-of-2-fields/862016#862016 0 Answer by Christian Hagelid for DataTextField in a ListBox is a combination of 2 fields. Christian Hagelid 2009-05-14T07:30:50Z 2009-05-14T07:30:50Z <pre><code>list.DataTextField = string.Format("{0}, {1}", LastName, Firstname); </code></pre> <p>If you use it elsewhere you could also add a DisplayName property to the User class that returns the same thing.</p> http://stackoverflow.com/questions/861925/displaying-only-selected-headers-in-datagridview/861943#861943 0 Answer by Christian Hagelid for Displaying only selected headers in DataGridView Christian Hagelid 2009-05-14T07:07:51Z 2009-05-14T07:07:51Z <p>in the DataBindingComplete() method:</p> <pre><code>this.dataGridView1.Columns["Age"].Visible = false; </code></pre> <p>ref: <a href="http://msdn.microsoft.com/en-us/library/0c24a0d7.aspx" rel="nofollow">How to: Hide Columns in the Windows Forms DataGridView Control</a></p> http://stackoverflow.com/questions/861566/c-to-iphone-dev/861585#861585 4 Answer by Christian Hagelid for C# to iPhone dev Christian Hagelid 2009-05-14T04:38:37Z 2009-05-14T04:38:37Z <p>see this thread: <a href="http://stackoverflow.com/questions/1939/howto-articles-for-iphone-development-objective-c">http://stackoverflow.com/questions/1939/howto-articles-for-iphone-development-objective-c</a></p> http://stackoverflow.com/questions/861552/when-should-i-open-and-close-a-connection-to-sql-server/861575#861575 1 Answer by Christian Hagelid for When should I open and close a connection to SQL Server Christian Hagelid 2009-05-14T04:36:07Z 2009-05-14T04:36:07Z <p>In your code sample there is no need to call the close() method on the connection object as it will be handled automatically due to the code residing inside a using block.</p> http://stackoverflow.com/questions/838770/how-do-you-troubleshoot-with-works-on-my-machine-scenarios/838802#838802 0 Answer by Christian Hagelid for how do you troubleshoot with "works on my machine" scenarios Christian Hagelid 2009-05-08T08:30:31Z 2009-05-08T08:30:31Z <p>ahh yes... the oldest excuse in the book.</p> <p>Assuming that both the developer and the tester is testing on the same server I would try to isolate the bug by identifying what the difference is between the developers machine and the testers machine. Could be a something minor like flash version, browser differences or forgetting to clear your browser cache</p> <p>I would also recommend using an automated testing framework and test apps on a dedicated test server.</p> http://stackoverflow.com/questions/832691/asp-net-formatting-datetime-in-gridview/832725#832725 0 Answer by Christian Hagelid for asp .net formatting dateTime in gridview Christian Hagelid 2009-05-07T03:07:16Z 2009-05-07T03:07:16Z <p>I think you datetime variable is evaluated as a String. Try casting it to a DateTime.</p> http://stackoverflow.com/questions/821053/listview-not-fully-updating-on-databind-after-postback/832343#832343 0 Answer by Christian Hagelid for Listview not fully updating on databind() after postback Christian Hagelid 2009-05-06T23:56:56Z 2009-05-06T23:56:56Z <p>Maybe your QueueListView is getting re-bound for some reason.</p> <p>Try resetting the DataSource value after the DataBind() to see what happens</p> <pre><code>QueueListView.DataBind(); QueueListView.DataSource = null; </code></pre> http://stackoverflow.com/questions/829542/how-do-i-decrease-the-size-of-my-sql-server-log-file/829577#829577 0 Answer by Christian Hagelid for How do I decrease the size of my sql server log file? Christian Hagelid 2009-05-06T13:32:52Z 2009-05-06T13:32:52Z <p>see <a href="http://stackoverflow.com/questions/40402/what-is-the-command-to-truncate-a-sql-server-log-file/40420#40420">this answer</a> on a similar question</p> http://stackoverflow.com/questions/680268/net-mailmessage-and-smtpclient-getting-tagged-as-spam/680280#680280 1 Answer by Christian Hagelid for .NET MailMessage and SMTPClient Getting Tagged as Spam? Christian Hagelid 2009-03-25T05:02:53Z 2009-03-25T05:02:53Z <p>One thing you can do which I've just learned is to update your DNS with some domain keys to verify that the domain in your from address is valid.</p> <p><a href="http://en.wikipedia.org/wiki/DomainKeys%5FIdentified%5FMail" rel="nofollow">http://en.wikipedia.org/wiki/DomainKeys_Identified_Mail</a></p> http://stackoverflow.com/questions/19155/how-do-i-become-a-programmer-who-gets-things-done/19159#19159 47 Answer by Christian Hagelid for How do I become a programmer who 'gets things done'? Christian Hagelid 2008-08-21T00:45:38Z 2009-03-24T19:29:23Z <p>Some things to consider:</p> <ul> <li>Create a TODO list and stick to it</li> <li><a href="http://beta.stackoverflow.com/questions/8440/visual-studio-optimizations#8453" rel="nofollow">Optimise your environment</a></li> <li>If you are easily distracted, consider disabling your internet connection and phone for an hour or two.</li> <li>Get some good quality coffee to keep you going</li> <li><a href="http://beta.stackoverflow.com/questions/7630/how-do-i-convince-my-boss-to-buy-nice-big-monitors-for-the-developers#7634" rel="nofollow">Get the biggest screen your money can buy</a></li> <li>If possible, get your own office</li> <li>Take small but frequent breaks</li> </ul> http://stackoverflow.com/questions/457257/how-to-select-a-set-number-of-random-records-where-one-column-is-unique 0 How to select a set number of random records where one column is unique? Christian Hagelid 2009-01-19T11:03:53Z 2009-01-19T23:06:23Z <p>I've been struggling with this one SQL query requirement today that I was wondering if someone could help me with.</p> <p>I have a table of sports questions. One of the columns is the team related to the question. My requirement is to return a set number of random questions where the teams are unique.</p> <p>So lets say we have the following table and want 5 questions:</p> <pre><code>Question Answer Team ----------------------------------- question 1 answer 1 team A question 2 answer 2 team B question 3 answer 3 team B question 4 answer 3 team D question 5 answer 3 team A question 6 answer 3 team C question 7 answer 3 team F question 8 answer 3 team C question 9 answer 3 team G question 10 answer 3 team D </code></pre> <p>A valid result would return:</p> <pre><code>question 1 answer 1 team A question 2 answer 2 team B question 4 answer 3 team D question 6 answer 3 team C question 7 answer 3 team F </code></pre> <p>I feel that it should be possible to accomplish this as a clean SQL statement with some clever use of Distinct and Take but I haven't been able to get it right yet.</p> <p>Best solution so far is from <a href="http://stackoverflow.com/users/31345/mladen-prajdic">Mladen Prajdic</a>. I have just updated it slightly to improve on it's randomness:</p> <pre><code>SELECT TOP 10 * FROM (SELECT ROW_NUMBER() OVER(PARTITION BY Team ORDER BY Team, NEWID()) AS RN, * FROM Question ) teams WHERE RN = 2 ORDER BY NEWID() </code></pre> http://stackoverflow.com/questions/419229/where-can-i-find-a-list-of-jquery-autocomplete-options-such-as-mustmatch-highlig/419294#419294 6 Answer by Christian Hagelid for Where can I find a list of jquery autocomplete options such as mustmatch, highlight, etc? Christian Hagelid 2009-01-07T05:33:43Z 2009-01-07T05:33:43Z <p><a href="http://docs.jquery.com/Plugins/Autocomplete/autocomplete#toptions" rel="nofollow">http://docs.jquery.com/Plugins/Autocomplete/autocomplete#toptions</a></p> http://stackoverflow.com/questions/295476/how-can-i-fix-my-http-handlers-and-different-host-headers-using-asp-net/295512#295512 1 Answer by Christian Hagelid for How can I fix my HTTP handlers and different host headers using ASP.NET? Christian Hagelid 2008-11-17T12:54:42Z 2008-11-17T12:54:42Z <p>There is an extensive discussion on URL rewriting on Scott Gu's <a href="http://weblogs.asp.net/scottgu/archive/2007/02/26/tip-trick-url-rewriting-with-asp-net.aspx" rel="nofollow">blog <a href="http://weblogs.asp.net/scottgu/archive/2007/02/26/tip-trick-url-rewriting-with-asp-net.aspx" rel="nofollow">http://weblogs.asp.net/scottgu/archive/2007/02/26/tip-trick-url-rewriting-with-asp-net.aspx</a></a></p> http://stackoverflow.com/questions/137187/what-to-do-if-a-team-member-is-not-performing-well/137211#137211 0 Answer by Christian Hagelid for What to do if a team member is not performing well? Christian Hagelid 2008-09-26T01:06:40Z 2008-09-26T01:06:40Z <p><a href="http://stackoverflow.com/questions/17996/how-do-you-fire-a-developer#18039">This thread</a> also has some good tips for finding out why a person is under-performing.</p> http://stackoverflow.com/questions/119060/can-i-make-a-sharepoint-image-web-part-clickable-to-link-to-another-page/119122#119122 3 Answer by Christian Hagelid for Can I make a SharePoint Image Web Part clickable to link to another page Christian Hagelid 2008-09-23T04:24:47Z 2008-09-23T04:24:47Z <p>Does it have to be an Image Web Part? If not I would simply use a <a href="http://office.microsoft.com/en-us/sharepointserver/HA100240461033.aspx" rel="nofollow">Content Editor Web Part</a> and paste the required HTML there.</p> <pre><code>&lt;a href="http://www.google.com"&gt;&lt;img src="urlToImage" /&gt;&lt;/a&gt; </code></pre> http://stackoverflow.com/questions/89285/whats-a-good-way-to-trim-the-gui-of-a-asp-net-website/89295#89295 3 Answer by Christian Hagelid for Whats a good way to trim the GUI of a ASP.NET website? Christian Hagelid 2008-09-18T01:51:25Z 2008-09-18T01:51:25Z <p>One simple suggestion would be to group controls into panels based on access rights</p> http://stackoverflow.com/questions/57867/is-there-a-windows-registry-dictionary-that-explains-the-whole-or-most-of-the/57885#57885 1 Answer by Christian Hagelid for Is there a Windows Registry "dictionary" that explains the whole (or most of) the Windows Registry? Christian Hagelid 2008-09-11T23:14:50Z 2008-09-11T23:14:50Z <p>I have used <a href="http://www.majorgeeks.com/Mystery_Behind_Windows_Registry_d415.html" rel="nofollow">this help file</a> in the past. Very good resource</p> http://stackoverflow.com/questions/55845/should-data-security-be-performed-on-the-database-side/55856#55856 0 Answer by Christian Hagelid for Should data security be performed on the database side? Christian Hagelid 2008-09-11T05:37:48Z 2008-09-11T05:37:48Z <p>My opinion is that the application itself should handle authentication and authorisation. On the database side you should only handle encryption of data as needed.</p> http://stackoverflow.com/questions/55843/how-can-i-test-that-my-linq-iqueryable-has-executed/55848#55848 0 Answer by Christian Hagelid for How can I test that my Linq IQueryable has executed Christian Hagelid 2008-09-11T05:27:02Z 2008-09-11T05:33:10Z <p>I believe you can use <a href="http://msdn.microsoft.com/en-us/library/system.data.linq.datacontext.log.aspx" rel="nofollow">DataContext.Log</a> to log everything that is executed.</p> http://stackoverflow.com/questions/727037/entity-framework-exception-index-was-outside-of-the-bounds-of-the-array Comment by Christian Hagelid on Entity Framework Exception: Index was outside of the bounds of the array." Christian Hagelid 2009-10-12T05:58:18Z 2009-10-12T05:58:18Z I'm getting the exact same error. I've been using this model for quite a while with no errors but after doing some database modifications today and updating the model, this error appeared. The solution builds with no errors but this error is listed in the Error List. When I run the application I get the error as soon as I try to access the model. http://stackoverflow.com/questions/1483652/wpf-combobox-binding-behaviour/1527990#1527990 Comment by Christian Hagelid on WPF ComboBox binding behaviour Christian Hagelid 2009-10-08T02:43:03Z 2009-10-08T02:43:03Z hmm...I'm still getting the same error with this code. As soon as I update the SelectedProductNumber from the SelectedProduct property (or vice versa) I get into en endless loop. I have implemented the solution slightly different now by updating the SelectedCustomer.FavouriteProduct field from both properties (see Update 2) http://stackoverflow.com/questions/1483652/wpf-combobox-binding-behaviour/1527990#1527990 Comment by Christian Hagelid on WPF ComboBox binding behaviour Christian Hagelid 2009-10-06T22:11:52Z 2009-10-06T22:11:52Z I thought I might have to do something like this. I have added the respective properties but I am having a problem between the ProductId and the Product properties. As soon as you change either of them you get into an endless loop and finally get a StackOverflow exception ;) It might be because of how I am implementing the handler though (I'm fairly new to WPF). I'll update the question with the code. http://stackoverflow.com/questions/1483652/wpf-combobox-binding-behaviour/1522032#1522032 Comment by Christian Hagelid on WPF ComboBox binding behaviour Christian Hagelid 2009-10-06T21:34:26Z 2009-10-06T21:34:26Z I am aiming to give the user two options to select a product. Either by selecting the product from the ComboBox or by typing in the product number. I can make the ComboBox editable but that will not let me type in product numbers. I have not looked into using a separate ComboBox with the IsSynchronizedWithCurrentItem option yet. http://stackoverflow.com/questions/1483652/wpf-combobox-binding-behaviour/1522032#1522032 Comment by Christian Hagelid on WPF ComboBox binding behaviour Christian Hagelid 2009-10-05T23:59:31Z 2009-10-05T23:59:31Z This looked very promising but unfortunately I'm still getting the same behaviour. The TextBox gets updated when I select something from the ComboBox but the other way is not working properly. I think I might be going about it all wrong. http://stackoverflow.com/questions/1483652/wpf-combobox-binding-behaviour/1483802#1483802 Comment by Christian Hagelid on WPF ComboBox binding behaviour Christian Hagelid 2009-10-05T23:55:11Z 2009-10-05T23:55:11Z I don't see how I can use SelectedItem to set the selected Product based on ProductNumber http://stackoverflow.com/questions/741956/wpf-pan-zoom-image/826321#826321 Comment by Christian Hagelid on WPF - Pan & Zoom Image Christian Hagelid 2009-09-01T07:55:55Z 2009-09-01T07:55:55Z very very cool http://stackoverflow.com/questions/57909/when-creating-a-new-gui-is-wpf-the-preferred-choice-over-windows-forms/75387#75387 Comment by Christian Hagelid on When creating a new GUI, is WPF the preferred choice over Windows Forms? Christian Hagelid 2009-08-11T13:50:52Z 2009-08-11T13:50:52Z some very interesting and well grounded points http://stackoverflow.com/questions/181597/what-are-the-naming-guidelines-for-asp-net-controls/911194#911194 Comment by Christian Hagelid on What are the naming guidelines for ASP.NET controls? Christian Hagelid 2009-05-31T23:34:23Z 2009-05-31T23:34:23Z +1 and accepted answer for providing the links and the explanation behind Microsoft's guidance. Still not sure we'll move away from the prefix option though, purely because of intellisense. http://stackoverflow.com/questions/876228/vs2008-is-slow-in-a-development-environment-that-is-disconnected-from-the-interne/876241#876241 Comment by Christian Hagelid on VS2008 is slow in a development environment that is disconnected from the internet Christian Hagelid 2009-05-18T23:08:39Z 2009-05-18T23:08:39Z Is you environment slow in general or is it for specific actions like startupm shutdown, build, etc... ? http://stackoverflow.com/questions/866325/variable-assignment-in-t-sql/866332#866332 Comment by Christian Hagelid on Variable Assignment in T-SQL Christian Hagelid 2009-05-14T23:13:51Z 2009-05-14T23:13:51Z really? Why is SET discouraged? http://stackoverflow.com/questions/861752/deleting-a-record-in-a-table-which-has-foreign-key-relational-tables Comment by Christian Hagelid on Deleting a record in a table which has foreign key relational tables Christian Hagelid 2009-05-14T06:00:56Z 2009-05-14T06:00:56Z delete from employees where depID = 10 ? http://stackoverflow.com/questions/838814/how-to-convert-nvarchar-to-time-not-datetime Comment by Christian Hagelid on how to convert nvarchar to time ,not datetime ? Christian Hagelid 2009-05-08T08:54:44Z 2009-05-08T08:54:44Z there is no datatype in SQL Server to only hold the time part of a date. What are you trying to achieve? http://stackoverflow.com/questions/838677/how-do-i-make-sure-that-at-least-one-checkbox-is-checked/838698#838698 Comment by Christian Hagelid on How do I make sure that at least one checkbox is checked? Christian Hagelid 2009-05-08T08:01:19Z 2009-05-08T08:01:19Z did you forget to add a test to see if the checkbox is checked? looks like your setting checked to true as soon as you find a checkbox input control http://stackoverflow.com/questions/838677/how-do-i-make-sure-that-at-least-one-checkbox-is-checked/838705#838705 Comment by Christian Hagelid on How do I make sure that at least one checkbox is checked? Christian Hagelid 2009-05-08T08:00:15Z 2009-05-08T08:00:15Z a thing of beauty