User Jeffaxe - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T22:48:32Z http://stackoverflow.com/feeds/user/4307 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/546782/where-should-my-models-live-web-tier-or-data-tier-mvc-nhibernate 6 Where should my models live? Web tier or Data tier? (MVC + NHibernate) Jeffaxe 2009-02-13T17:09:40Z 2009-10-19T20:38:34Z <p>I am setting up an n-tier application with MVC, Ninject, and NHibernate (my first using these technologies). For clarity's sake, the tiers are a "Data" tier, a "Services" tier, and a "Web" tier (all are separate projects). </p> <p>With MVC, you have your models that are in the "Models" folder. It seems necessary to put my models here to create strongly-typed Views and to generally keep with the philosophy of MVC. </p> <p>However, with NHibernate, I also need my models in the "Data" tier so that the mapping can take place and that NHibernate can instantiate actual objects to return to the services layer. </p> <p>Duplicating the classes across projects is not very DRY and abstracting them into their own library doesn't seem to play well with MVC (neither in practice nor philosophy).</p> <p>Any thoughts? How do you structure your O/RM objects vs MVC models? </p> http://stackoverflow.com/questions/778481/sharepoint-remembering-changed-password 2 SharePoint remembering changed password Jeffaxe 2009-04-22T18:08:52Z 2009-06-29T09:02:15Z <p>Hey all,</p> <p>I'm witnessing some strange behavior with SharePoint when changing user's Active Directory passwords. </p> <p>I created a custom Application Page to change a user's password in Active Directory. The code seems to be working great as I can verify within Windows that the password was changed.</p> <p>However, the strange thing is that after the password change, SharePoint will allow the user to log in with both their newly changed password <strong>and their old password</strong>. Essentially allowing them to log in with two different passwords. </p> <p>I verified that this is something within SharePoint as I can only log into Windows with the newly updated password.</p> <p>Does anybody know why this would happen? I can't seem to find any info on the web regarding SharePoint caching credentials or anything. Any thoughts would be greatly appreciated. </p> <p>Thanks in advance. </p> http://stackoverflow.com/questions/559027/cannot-find-microsoft-visualstudio-texttemplating-assembly 3 Cannot find Microsoft.VisualStudio.TextTemplating assembly Jeffaxe 2009-02-17T22:31:49Z 2009-05-20T14:45:09Z <p>I am doing some work with T4 (Text Template Transformation Toolkit) and am trying to get to a point where I can create my own custom text template host. However, all of that relies on the <strong>Microsoft.VisualStudio.TextTemplating</strong> assembly and I cannot find it on my system!</p> <p>I first tried adding a reference to the assembly in Visual Studio, but the assembly for <strong>Microsoft.VisualStudio.TextTemplating</strong> is not listed under the .NET tab. </p> <p>I then took a look in the <em>%WINDIR%/Assembly</em> directory and found an entry for <strong>Microsoft.VisualStudio.TextTemplating</strong>. However, when I try and browse to this location and add the assembly in Visual Studio, nothing happens. </p> <p>Has anybody else had this problem? According to MSDN tuts it sounds like this assembly should be included with Visual Studio (and I have VS 2003, 2005, and 2008 installed). </p> http://stackoverflow.com/questions/698168/iisadmpwd-utility-on-iis/794889#794889 1 Answer by Jeffaxe for iisadmpwd Utility on IIS Jeffaxe 2009-04-27T19:14:25Z 2009-04-27T19:14:25Z <p>You can use the <a href="http://msdn.microsoft.com/en-us/library/system.directoryservices.accountmanagement.aspx" rel="nofollow">System.DirectoryServices.AccountManagement</a> namespace to manipulate user accounts to flexibly expire and refresh passwords programmatically.</p> <p>I have successfully been able to expire users' passwords and then use the IISADMPWD pages to reset it. </p> http://stackoverflow.com/questions/547769/is-it-possible-to-update-change-a-primary-key-with-nhibernate 0 Is it possible to update/change a primary key with NHibernate? Jeffaxe 2009-02-13T21:27:25Z 2009-02-13T23:21:11Z <p>I have a database that uses natural keys (i.e. business oriented keys). Unfortunately, because of this, the primary keys for these objects may change over time. </p> <p>I am currently researching the use of NHibernate for an O/RM for this database. However, in my testing I have noticed that there is no apparent way to change the primary key of an object and save it to the database. </p> <p>For example, say I have a 'Business' object with a 'BusinessCode' as it's primary key:</p> <pre><code>public class Business { public string BusinessCode { get; set; } public string Name { get; set; } ... } </code></pre> <p>If I do a Get, change the primary key, and try and save it back to the database using NHibernate, I either receive an exception or unexpected results (depending on if I use <em>Save()</em>, <em>Update()</em>, or <em>SaveOrUpdateCopy()</em>)</p> <pre><code>Business b = session.Get&lt;Business&gt;("BusinessCode1"); b.BusinessCode = "BusinessCode22"; session.Update( b ); </code></pre> <p><strong>So is something like this possible?</strong> </p> <p>I understand that many NHibernate folks recommend using primary keys that do not change (i.e. identities). But I have a couple DB's that use natural keys. Thanks. </p> http://stackoverflow.com/questions/547769/is-it-possible-to-update-change-a-primary-key-with-nhibernate/548074#548074 0 Answer by Jeffaxe for Is it possible to update/change a primary key with NHibernate? Jeffaxe 2009-02-13T23:21:11Z 2009-02-13T23:21:11Z <p>I'm actually kicking myself that I even asked this question because I can easily mitigate this by doing a delete-insert type of operation. This was more of a proof-of-concept with an existing database. Thanks for your input!</p> http://stackoverflow.com/questions/284906/easily-digestible-ui-tips-for-developers/284937#284937 5 Answer by Jeffaxe for Easily digestible UI tips for developers Jeffaxe 2008-11-12T18:50:12Z 2008-11-12T18:50:12Z <p>Always give your user a "way out" from wherever they are that <strong>does not require</strong> the use of the back button.</p> <p>The best example: </p> <p>If an error occurs, give them a link back to where they were (or at least to where they can start over). </p> http://stackoverflow.com/questions/279374/how-do-i-use-net-reflection-to-search-for-a-property-by-name-ignoring-case/279402#279402 1 Answer by Jeffaxe for How do I use .Net reflection to search for a property by name ignoring case? Jeffaxe 2008-11-10T22:28:19Z 2008-11-10T22:28:19Z <p>Try adding the scope BindingFlags like so:</p> <pre><code>var prop = Backend.GetType().GetProperty(fieldName, BindingFlags.Instance | BindingFlags.Public | BindingFlags.IgnoreCase); </code></pre> <p>This works for me. </p> http://stackoverflow.com/questions/254902/design-for-handling-both-forms-authentication-and-active-directory/254945#254945 0 Answer by Jeffaxe for Design for handling both forms authentication and active directory Jeffaxe 2008-10-31T21:00:17Z 2008-10-31T21:00:17Z <p>To answer your design pattern question. On a project that had a similar situation (using two different systems for authentication), we used the <a href="http://en.wikipedia.org/wiki/Facade_pattern" rel="nofollow">Facade pattern</a> to abstract away which system was actually doing the authentication (one or the other or even both!). </p> <p>Then, within that facade, we would make the actual calls to the Authentication Providers.</p> http://stackoverflow.com/questions/254349/how-do-i-prevent-exceptions-from-half-loaded-pages-form-submission-while-using-a/254677#254677 2 Answer by Jeffaxe for How do I prevent exceptions from half-loaded pages' form submission while using asp.net event validation? Jeffaxe 2008-10-31T19:35:54Z 2008-10-31T19:35:54Z <p>I answered a similar question <a href="http://stackoverflow.com/questions/140303/aspnet-unable-to-validate-data#254581">here</a>. To quote:</p> <p>Essentially, you'll want to get the ViewState to load at the top of the page. In .NET 3.5 SP1 the <em>RenderAllHiddenFieldsAtTopOfForm</em> property was added to the PagesSection configuration. </p> <p><strong>Web.config</strong></p> <pre><code>&lt;configuration&gt; &lt;system.web&gt; &lt;pages renderAllHiddenFieldsAtTopOfForm="true"&gt;&lt;/pages&gt; &lt;/system.web&gt; &lt;/configuration&gt; </code></pre> <p>Interestingly, the default value of this is true. So, in essence, if you are using .NET 3.5 SP1 then the ViewState is automatically being rendered at the top of the form (before the rest of the page is loaded) thus eliminating the ViewState error you are getting.</p> http://stackoverflow.com/questions/140303/asp-net-unable-to-validate-data/254581#254581 4 Answer by Jeffaxe for ASP.NET: Unable to validate data. Jeffaxe 2008-10-31T19:08:29Z 2008-10-31T19:08:29Z <p>In .NET 3.5 SP1 the <em>RenderAllHiddenFieldsAtTopOfForm</em> property was added to the PagesSection configuration. </p> <p><strong>Web.config</strong></p> <pre><code>&lt;configuration&gt; &lt;system.web&gt; &lt;pages renderAllHiddenFieldsAtTopOfForm="true"&gt;&lt;/pages&gt; &lt;/system.web&gt; &lt;/configuration&gt; </code></pre> <p>Interestingly, the default value of this is true. So, in essence, if you are using .NET 3.5 SP1 then the ViewState is automatically being rendered at the top of the form (before the rest of the page is loaded) thus eliminating the ViewState error you are getting.</p> http://stackoverflow.com/questions/253925/what-is-the-correct-way-to-deal-with-procedures-that-take-a-long-time-to-comple/253950#253950 0 Answer by Jeffaxe for What is the correct way to deal with procedures that take a "long time" to complete? Jeffaxe 2008-10-31T15:41:12Z 2008-10-31T15:41:12Z <p>You will want to take advantage of Threading. When the user signals to fetch the data, you can spawn a new thread to fetch the data while making a throbber visible on the main form. When the thread returns, you can react and show results. </p> http://stackoverflow.com/questions/251264/data-access-layer-subsonic-c-2-0/252680#252680 3 Answer by Jeffaxe for data access layer - subsonic, C# 2.0 Jeffaxe 2008-10-31T05:32:48Z 2008-10-31T05:32:48Z <p>What are you planning to do with the Datasets that you cannot do with the ILists? IMHO, you'll want to be strongly typed as much as possible. </p> <p>On my team, we connect our middle tier to ObjectDataSources and then all of our GridViews, ListViews, etc... use them to fetch data: </p> <p><strong>Business Layer / Middle Tier</strong></p> <pre><code>namespace Project { public class BusinessLayer { public IList&lt;Product&gt; GetProducts() { return new Select().From( Products.Schema ).Where( Products.Columns.Status ).IsEqualTo( true ).ExecuteTypedList&lt;Product&gt;(); } } } </code></pre> <p><strong>On Page</strong></p> <pre><code>&lt;asp:ObjectDataSource id="odsProducts" runat="server" TypeName="Project.BusinessLayer" SelectMethod="GetProducts()"&gt;&lt;/asp:ObjectDataSource&gt; </code></pre> <p>Then from there, you can connect any of your data-view controls (Gridview, Listview, etc...) to the data source. It's very clean and requires no code in the code-behind.</p> <p>I also came across that article by Rob that you posted and have found it helpful in trying to figure out how to write de-coupled apps with SubSonic.</p> http://stackoverflow.com/questions/250468/why-call-sqlclient-sqldatareader-close-method-anyway/250557#250557 3 Answer by Jeffaxe for Why call SqlClient.SqlDataReader Close() method anyway? Jeffaxe 2008-10-30T15:18:20Z 2008-10-30T15:18:20Z <p>One good practice (as long as you aren't re-using connections) is to add the Command Behavior to the SqlDataReader to close the connection when it gets disposed:</p> <pre><code>SqlDataReader rdr = cmd.ExecuteReader( CommandBehavior.CloseConnection ); </code></pre> <p>Adding this will ensure that the connection to the database is closed when the SqlDataReader object is closed (or garbage collected). </p> <p>As I stated before, though, you don't want to do this if you are planning on re-using the database connection for another operation within the same method. </p> http://stackoverflow.com/questions/247311/sqldatareader-in-this-scenario-will-the-reader-get-closed 2 SqlDataReader: In this scenario, will the reader get closed? Jeffaxe 2008-10-29T15:46:32Z 2008-10-29T16:09:12Z <p>I am cleaning up the DataReaders in an old .NET 1.1 project that I inherited. </p> <p>The previous developer coded the data-access-layer in such a way that most of the DAL methods returned SqlDataReaders (thus leaving it up to the caller to properly call the .Close() or .Dispose() methods). </p> <p>I have come across a situation, though, where a caller is not catching the returned SqlDataReader (and therefore is not disposing of it properly). See the code below:</p> <p>Data Access Method:</p> <pre><code>Public Shared Function UpdateData() As SqlDataReader ... drSQL = cmdSQL.ExecuteReader(CommandBehavior.CloseConnection) Return drSQL End Function </code></pre> <p>Calling code:</p> <pre><code>... DataAccessLayer.UpdateData() ... </code></pre> <p>As you can see, the calling method does not receive/catch the returned SqlDataReader. So what happens? Is that SqlDataReader still out there and open? Or does it automatically get garbage collected since nothing is addressing it? </p> <p>I couldn't think of a way to debug and test this. If anybody has any ideas or suggestions that would be great. </p> http://stackoverflow.com/questions/175732/tools-components-for-building-a-survey-application/181410#181410 0 Answer by Jeffaxe for Tools/Components for building a Survey Application Jeffaxe 2008-10-08T05:00:45Z 2008-10-08T05:00:45Z <p>Another option would be to have users use <a href="http://en.wikipedia.org/wiki/InfoPath" rel="nofollow">InfoPath</a> or <a href="http://en.wikipedia.org/wiki/Adobe_Designer" rel="nofollow">Adobe Designer</a> to create the survey forms that are distributed to survey takers (either by e-mail or web-site). </p> <p>With InfoPath, you can have the responses call back to Web Services that you have written. Or, with both the packages, you can have the responses e-mailed back to a particular address and the XML that is sent can be parsed and processed. </p> http://stackoverflow.com/questions/175074/whats-the-most-egregious-pop-culture-perversion-of-programming/180472#180472 8 Answer by Jeffaxe for What's the most egregious pop culture perversion of programming? Jeffaxe 2008-10-07T21:17:30Z 2008-10-07T21:17:30Z <p>Bladerunner. </p> <p>Deckard is analyzing a photo of a bedroom.</p> <p>He enhances... he enhances... and then, somehow, TURNS THE PERSPECTIVE OF THE PHOTOGRAPH to to reveal the snake lady around the corner sitting in a bathtub. </p> <p>Ridiculous, even for science fiction. </p> http://stackoverflow.com/questions/539328/high-cpu-usage-when-deploying-content-types-via-a-sharepoint-feature/544857#544857 Comment by Jeffaxe on High CPU usage when deploying content types via a SharePoint feature Jeffaxe 2009-07-02T17:03:09Z 2009-07-02T17:03:09Z This saved me as well. Thanks so much! http://stackoverflow.com/questions/778481/sharepoint-remembering-changed-password Comment by Jeffaxe on SharePoint remembering changed password Jeffaxe 2009-04-22T23:41:31Z 2009-04-22T23:41:31Z MOSS 2007 Standard with Windows Authentication (NTLM). http://stackoverflow.com/questions/619631/know-any-c-syntax-highlighting-tricks/636314#636314 Comment by Jeffaxe on Know any C# syntax-highlighting tricks? Jeffaxe 2009-03-16T22:48:32Z 2009-03-16T22:48:32Z Very interesting idea! http://stackoverflow.com/questions/559027/cannot-find-microsoft-visualstudio-texttemplating-assembly/560676#560676 Comment by Jeffaxe on Cannot find Microsoft.VisualStudio.TextTemplating assembly Jeffaxe 2009-02-18T16:26:38Z 2009-02-18T16:26:38Z Thanks, Oleg. I installed the VS2008 SDK and now I can reference the assembly. By the way, your blog has been a great resource to me for T4. I really appreciate all your work! http://stackoverflow.com/questions/547769/is-it-possible-to-update-change-a-primary-key-with-nhibernate/547940#547940 Comment by Jeffaxe on Is it possible to update/change a primary key with NHibernate? Jeffaxe 2009-02-13T23:20:37Z 2009-02-13T23:20:37Z We actually are using composite-id's. So good call! I'm actually kicking myself that I even asked this question because I can easily mitigate this by doing a delete-insert type of operation. This was more of a proof-of-concept with an existing database. Thanks for your input! http://stackoverflow.com/questions/546782/where-should-my-models-live-web-tier-or-data-tier-mvc-nhibernate/547209#547209 Comment by Jeffaxe on Where should my models live? Web tier or Data tier? (MVC + NHibernate) Jeffaxe 2009-02-13T19:45:30Z 2009-02-13T19:45:30Z &quot;With NHibernate you don't really need a Data Tier since the Session itself is the data tier.&quot; To implement the Repository pattern, I am abstracting the Data tier. That way, my services are programmed against an interface and the Data tier is easily interchangeable (i.e. switching O/RM's). http://stackoverflow.com/questions/546782/where-should-my-models-live-web-tier-or-data-tier-mvc-nhibernate/546975#546975 Comment by Jeffaxe on Where should my models live? Web tier or Data tier? (MVC + NHibernate) Jeffaxe 2009-02-13T19:35:58Z 2009-02-13T19:35:58Z That makes sense. Still, though, this mapping of Domain Models to Presentation Models doesn't seem very DRY, especially when the two Models will be similar. http://stackoverflow.com/questions/546782/where-should-my-models-live-web-tier-or-data-tier-mvc-nhibernate/546975#546975 Comment by Jeffaxe on Where should my models live? Web tier or Data tier? (MVC + NHibernate) Jeffaxe 2009-02-13T18:36:11Z 2009-02-13T18:36:11Z Okay. So it seems like the consensus is to keep Presentation Models in the Web tier and my Domain Models in the Data tier. So what should my Services tier return to the Web tier? Should it know about the Presentation Models? Or should it return Domain Models? http://stackoverflow.com/questions/546782/where-should-my-models-live-web-tier-or-data-tier-mvc-nhibernate/547122#547122 Comment by Jeffaxe on Where should my models live? Web tier or Data tier? (MVC + NHibernate) Jeffaxe 2009-02-13T18:35:37Z 2009-02-13T18:35:37Z Okay. So it seems like the consensus is to keep Presentation Models in the Web tier and my Domain Models in the Data tier. So what should my Services tier return to the Web tier? Should it know about the Presentation Models? Or should it return Domain Models? http://stackoverflow.com/questions/247311/sqldatareader-in-this-scenario-will-the-reader-get-closed/247404#247404 Comment by Jeffaxe on SqlDataReader: In this scenario, will the reader get closed? Jeffaxe 2008-10-30T15:31:49Z 2008-10-30T15:31:49Z I think you're correct on this one. Since, we have added the Command Behavior to close the connection when the SqlDataReader object gets closed/disposed, the Garbage Collection should take care of everything (whenever it happens).