User Matt Hinze - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T12:22:49Z http://stackoverflow.com/feeds/user/2676 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1712790/asp-net-and-objects/1712833#1712833 0 Answer by Matt Hinze for ASP.NET and Objects Matt Hinze 2009-11-11T03:31:27Z 2009-11-11T03:31:27Z <p>You need an object-relational mapper, or ORM. The most popular one is NHibernate, and some folks have created a framework called ActiveRecord that sits atop it and acts sort of like the activerecord you're probably familiar with in Rails. Start your Googling there, with NHibernate. </p> http://stackoverflow.com/questions/1098653/is-there-a-way-to-detect-and-debug-circular-references-when-using-structuremap/1215756#1215756 1 Answer by Matt Hinze for Is there a way to detect and debug circular references when using StructureMap? Matt Hinze 2009-08-01T03:23:20Z 2009-08-01T03:23:20Z <p><code>ObjectFactory.AssertConfigurationIsValid();</code> will check your graph and attempt to instantiate all plugged types.</p> http://stackoverflow.com/questions/1175875/automapper-flattens-domain-models-but-does-it-do-the-opposite-if-not-what-does/1215754#1215754 1 Answer by Matt Hinze for AutoMapper flattens Domain Models but does it do the opposite? If not, what does? Matt Hinze 2009-08-01T03:21:32Z 2009-08-01T03:21:32Z <p>Not really, because it would have to be extremely conventional to be useful. It's easy to discern patterns when flattening, but the other way 'round... just too much custom logic.</p> http://stackoverflow.com/questions/1212530/static-lookups-in-nhibernate/1215746#1215746 2 Answer by Matt Hinze for Static lookups in NHibernate Matt Hinze 2009-08-01T03:16:12Z 2009-08-01T03:16:12Z <p>Check out what we call <a href="http://www.lostechies.com/blogs/jimmy%5Fbogard/archive/2008/08/12/enumeration-classes.aspx" rel="nofollow">Enumeration classes</a>.. </p> <p>It's basically the <em>flyweight</em> pattern. </p> <p>You can persist them, using an <code>IUserType</code> implementation, as the value or the display name. </p> <p>We do crazy stuff with them. Like provide auto-genned lookup tables with foreign keys for DBA folks while keeping all the values in code.</p> http://stackoverflow.com/questions/365263/whats-your-favorite-c-open-source-project-of-the-year-2008/1026453#1026453 3 Answer by Matt Hinze for What's Your Favorite C# Open Source Project of the year 2008? Matt Hinze 2009-06-22T10:28:25Z 2009-06-22T10:28:25Z <p><a href="http://structuremap.sourceforge.net/Default.htm" rel="nofollow">StructureMap</a></p> http://stackoverflow.com/questions/999991/nhibernate-passing-parameter-in-criteria/1017359#1017359 1 Answer by Matt Hinze for NHibernate passing parameter in criteria Matt Hinze 2009-06-19T10:49:11Z 2009-06-19T10:49:11Z <pre><code>session.CreateCriteria(typeof(Employee)) .Add(Restrictions.Eq("EmployeeId", someId)).List&lt;Employee&gt;(); </code></pre> <p>or</p> <pre><code>session.Load&lt;Employee&gt;(someId); </code></pre> http://stackoverflow.com/questions/900298/custom-binding-in-asp-net-mvc-changing-the-binding-behavior-on-a-single-field/900450#900450 1 Answer by Matt Hinze for Custom Binding in ASP.NET MVC - Changing the Binding Behavior on a Single Field Matt Hinze 2009-05-22T23:47:40Z 2009-06-15T04:05:50Z <p>This is a naive, quick and dirty example, but if you decide to go the model binder route, try something like: </p> <pre><code>// This goes in global.asax ControllerBuilder.Current.SetControllerFactory(new ControllerFactory()); ModelBinders.Binders.Add(typeof(CustomDateType), new CustomDateBinder()); </code></pre> <p>......</p> <pre><code>public class CustomDateType { public CustomDateType(string value) { } public string GetText() { // I do fancy stuff throw new NotImplementedException(); } public decimal? GetValue() { // I do fancy stuff throw new NotImplementedException(); } } public class CustomDateBinder : IModelBinder { public object BindModel(ControllerContext controllerContext, ModelBindingContext bindingContext) { try { string doubleDateValue = GetAttemptedValue(bindingContext); if (doubleDateValue == "") { return null; } return new CustomDateType(doubleDateValue); } catch (Exception ex) { string message = string.Format("Unable to locate a valid value for query string parameter '{0}'", bindingContext.ModelName); throw new ApplicationException(message, ex); } } private static string GetAttemptedValue(ModelBindingContext bindingContext) { ValueProviderResult value = bindingContext.ValueProvider[bindingContext.ModelName]; return value == null ? string.Empty : value.AttemptedValue; } } </code></pre> http://stackoverflow.com/questions/934393/nhibernate-mapping-encapsulating-a-list-within-an-object/934437#934437 0 Answer by Matt Hinze for Nhibernate mapping: Encapsulating a list within an object. Matt Hinze 2009-06-01T11:26:35Z 2009-06-01T11:26:35Z <p>Write the <strike>properties</strike> methods by hand:</p> <pre><code>public class Deal { public virtual Cost GetPlannedCost() { return _costs.FirstOrDefault(x =&gt; x.IsPlanned()); } public virtual Cost GetUnplannedCost() {} { return _costs.FirstOrDefault(x =&gt; x.IsUnplanned()); } public virtual Cost[] GetAllCosts() { return _costs.ToArray(); } private ISet&lt;Cost&gt; _costs = new HashedSet&lt;Cost&gt;(); } </code></pre> http://stackoverflow.com/questions/914692/asp-net-mvc-preserve-tempdata-across-multiple-requests/915133#915133 1 Answer by Matt Hinze for ASP.NET MVC : Preserve TempData across multiple requests Matt Hinze 2009-05-27T11:02:47Z 2009-05-27T11:02:47Z <p>Have your controller supertype override ExecuteCore, which clears TempData. I'm not saying this is a good idea...</p> <pre><code>protected override void ExecuteCore() { string actionName = RouteData.GetRequiredString("action"); if (!ActionInvoker.InvokeAction(ControllerContext, actionName)) { HandleUnknownAction(actionName); } } </code></pre> http://stackoverflow.com/questions/914371/is-it-possible-to-create-a-database-using-nhibernate/915123#915123 1 Answer by Matt Hinze for Is it possible to create a database using NHibernate? Matt Hinze 2009-05-27T10:58:34Z 2009-05-27T10:58:34Z <p>We use SchemaExport to provide a schema and a Nant task to drop and recreate the database. Another Nant task runs the schema export and dataloading code which exists in the form of an integration test run by the nunit task. There is a <a href="http://code.google.com/p/codecampserver/source/browse/trunk/nant.build" rel="nofollow">sample here</a>.</p> http://stackoverflow.com/questions/912437/refactor-to-design-pattern-displaying-hiding-different-combinations-of-controls/912487#912487 2 Answer by Matt Hinze for Refactor to Design Pattern: displaying/hiding different combinations of controls based on state Matt Hinze 2009-05-26T20:13:51Z 2009-05-26T20:13:51Z <p>Use the state pattern. Have each state operate on your page (abstracted as an interface):</p> <pre><code>public interface IControlSituationPage // your page implements this { void SetAvisibility(bool visibility); void SetBVisibility(bool visibility); ... } </code></pre> <p>....</p> <pre><code>public interface PageState // each state implements this { void ApplyState(IControlSituationPage page); } </code></pre> <p>.. then, after figuring out which state you're in (factory pattern maybe), call the method:</p> <pre><code>// ... somewhere.. _state.ApplyState(this); </code></pre> <p>Of course, this is in lieu of actually using a more robust presentation pattern like MVC or MVP.</p> http://stackoverflow.com/questions/911019/why-strongly-typed-html-actionlink-is-not-in-asp-net-mvc-1/911038#911038 1 Answer by Matt Hinze for Why Strongly Typed Html.ActionLink is Not in ASP.NET MVC 1 Matt Hinze 2009-05-26T14:36:33Z 2009-05-26T14:36:33Z <p>here is the answer: <a href="http://haacked.com/archive/0001/01/01/how-a-method-becomes-an-action.aspx" rel="nofollow">http://haacked.com/archive/0001/01/01/how-a-method-becomes-an-action.aspx</a></p> http://stackoverflow.com/questions/908658/unit-test-connundrum/908685#908685 0 Answer by Matt Hinze for Unit Test Connundrum Matt Hinze 2009-05-26T02:27:05Z 2009-05-26T02:27:05Z <p>An integration test against the filesystem would be worthwhile. Just make sure it does what it needs to do.</p> http://stackoverflow.com/questions/184729/as-a-mockist-tdd-practitioner-should-i-mock-other-methods-in-the-same-class-as/870271#870271 1 Answer by Matt Hinze for As a "mockist" TDD practitioner, should I mock other methods in the same class as the method under test? Matt Hinze 2009-05-15T18:52:32Z 2009-05-26T00:41:39Z <p>Edited for updated sample:</p> <p>I see now. You have problems testing this class because it has design flaws. This class violates the single responsibility principle. It is doing two things. First, it's managing a connection to a database. It's also syncing.</p> <p>You need a separate class to manage your database connection. This class will be a dependency of the class under test. The database connecting class can be faked when you unit test the class under test.</p> <p>Formerly:</p> <blockquote> <p>As a fellow interaction tester, consider refactoring if you have a need to do this. That class is probably doing too much.</p> <p>Let me put it to you this way: calling a private method does not make an interaction.</p> <p>This is one of the main points of TDD. When it hurts your design can be improved.</p> </blockquote> http://stackoverflow.com/questions/902387/structuremap-interceptors/905106#905106 0 Answer by Matt Hinze for StructureMap Interceptors Matt Hinze 2009-05-25T02:11:42Z 2009-05-25T02:11:42Z <p><a href="http://structuremap.sourceforge.net/Interception.htm" rel="nofollow">http://structuremap.sourceforge.net/Interception.htm</a></p> http://stackoverflow.com/questions/901651/where-is-the-testdriven-net-options-pane/901676#901676 1 Answer by Matt Hinze for Where is the TestDriven.NET Options Pane? Matt Hinze 2009-05-23T15:02:01Z 2009-05-23T15:02:01Z <p>Tools -> Options -> TestDriven.NET</p> http://stackoverflow.com/questions/898964/shortcut-for-changing-font-size-in-visual-studio/899010#899010 1 Answer by Matt Hinze for Shortcut for changing font size in Visual Studio Matt Hinze 2009-05-22T17:29:43Z 2009-05-22T17:29:43Z <p><a href="http://www.cptloadtest.com/2009/01/26/VisualStudioMacroModifyTextEditorFontSize.aspx" rel="nofollow">http://www.cptloadtest.com/2009/01/26/VisualStudioMacroModifyTextEditorFontSize.aspx</a></p> http://stackoverflow.com/questions/898745/asp-net-mvc-clearing-tempdata-after-a-controller-method-executes/898985#898985 0 Answer by Matt Hinze for ASP.NET MVC: clearing TempData after a controller method executes Matt Hinze 2009-05-22T17:23:41Z 2009-05-22T17:23:41Z <p>I wouldn't look for a certain place here, other than a custom TempDataProvider. But that's tricky. What if you want the regular behavior in other controllers? I'd YAGNI this for now and just clear it out where you need it to be cleared out. As you notice a pattern you can pull it up to some common place.</p> http://stackoverflow.com/questions/898780/what-are-the-best-learning-resources-to-teach-asp-net-mvc-to-an-asp-net-programme/898947#898947 1 Answer by Matt Hinze for What are the best learning resources to teach ASP.NET MVC to an ASP.NET programmer? Matt Hinze 2009-05-22T17:14:52Z 2009-05-22T17:14:52Z <p>Read source code.</p> <ul> <li><a href="http://codecampserver.org" rel="nofollow">Code Camp Server</a></li> <li><a href="http://code.google.com/p/sutekishop/" rel="nofollow">Suteki Shop</a></li> <li><a href="http://code.google.com/p/sharp-architecture/" rel="nofollow">Sharp Architecture</a></li> <li><a href="http://aspnet.codeplex.com/SourceControl/ListDownloadableCommits.aspx" rel="nofollow">ASP.NET MVC</a> (when I was learning the framework having the source open was invaluable)</li> </ul> http://stackoverflow.com/questions/897531/is-webservices-or-pagemethods-needed-anymore-with-asp-net-mvc/897536#897536 3 Answer by Matt Hinze for Is WebServices or PageMethods needed anymore with ASP.NET MVC ? Matt Hinze 2009-05-22T12:09:57Z 2009-05-22T12:09:57Z <p>If that's what you were using the WebService for, then no, it's not needed anymore.</p> http://stackoverflow.com/questions/896550/how-to-implement-repository-pattern-with-interface-base-and-concrete/897491#897491 0 Answer by Matt Hinze for How to implement Repository Pattern with interface, base and concrete. Matt Hinze 2009-05-22T11:58:34Z 2009-05-22T11:58:34Z <ol> <li><p>It really helps to have a <a href="http://code.google.com/p/sharp-architecture/source/browse/trunk/src/SharpArch/SharpArch.Core/DomainModel/Entity.cs" rel="nofollow">layer supertype for entities</a>. They will share an Id property. You won't have to deal with an expression to represent the id proeprty, you'll just know what it is.</p></li> <li><p>The <a href="http://www.dofactory.com/Patterns/PatternTemplate.aspx" rel="nofollow">template method pattern</a>. In this pattern your base Update does all the work calling helper methods in order, and your derived classes implement those protected abstract helper methods.</p></li> </ol> http://stackoverflow.com/questions/897336/creating-mvc-views-that-are-not-html/897353#897353 3 Answer by Matt Hinze for Creating MVC Views that are not HTML Matt Hinze 2009-05-22T11:06:27Z 2009-05-22T11:49:04Z <p>You can use <a href="http://code.google.com/p/mvccontrib/source/browse/trunk/src/MVCContrib/ActionResults/XmlResult.cs" rel="nofollow">MvcContrib's XmlResult</a>. This works just like your example above. You don't need to use a view to render the XML.</p> <p>In essence - you have an action on a controller that returns the XML.</p> http://stackoverflow.com/questions/897226/generating-html-using-a-template-from-a-net-application/897435#897435 3 Answer by Matt Hinze for Generating HTML using a template from a .NET application Matt Hinze 2009-05-22T11:36:00Z 2009-05-22T11:36:00Z <p>Check out <a href="http://github.com/jagregory/docu/tree/master" rel="nofollow">docu</a>. It <a href="http://github.com/jagregory/docu/blob/bbbd08669ccd1ac5b0c779dbc7044177b79153e3/src/Docu.Console/Output/HtmlGenerator.cs" rel="nofollow">uses the Spark view engine to render templated HTML</a> from a console app. Pretty straightforward.</p> http://stackoverflow.com/questions/779540/testing-an-objects-state-at-save/897404#897404 0 Answer by Matt Hinze for Testing an object's state at save Matt Hinze 2009-05-22T11:23:01Z 2009-05-22T11:23:01Z <p>Since it's so easy to set up a constraint here, why not test it to ensure there are no side-effects to your method?</p> <pre><code>stubbedUserDao.AssertWasCalled(x =&gt; x.Save(null), o =&gt; { o.IgnoreArguments(); o.Constraints(Property.AllPropertiesMatch(expectedMatchingUser)); }); </code></pre> http://stackoverflow.com/questions/895988/nhibernate-session-management-in-wcf-application/896000#896000 1 Answer by Matt Hinze for NHibernate session management in WCF application Matt Hinze 2009-05-22T01:04:42Z 2009-05-22T01:04:42Z <p><a href="http://www.igloocoder.com/archive/2009/04/23/wcf-and-nhibernate-redux.aspx" rel="nofollow">http://www.igloocoder.com/archive/2009/04/23/wcf-and-nhibernate-redux.aspx</a> -> <a href="https://igloocoder.net:8443/svn/IglooCommons/trunk/src/IglooCoder.Commons/WcfNhibernate/" rel="nofollow">https://igloocoder.net:8443/svn/IglooCommons/trunk/src/IglooCoder.Commons/WcfNhibernate/</a></p> http://stackoverflow.com/questions/149784/how-do-you-copy-a-record-in-a-sql-table-but-swap-out-the-unique-id-of-the-new-row/894772#894772 0 Answer by Matt Hinze for How do you copy a record in a SQL table but swap out the unique id of the new row? Matt Hinze 2009-05-21T19:49:10Z 2009-05-21T19:49:10Z <p>I'm guessing you're trying to avoid writing out all the column names. If you're using SQL Management Studio you can easily right click on the table and Script As Insert.. then you can mess around with that output to create your query.</p> http://stackoverflow.com/questions/894130/adding-a-default-selectlistitem/894143#894143 2 Answer by Matt Hinze for Adding a default SelectListItem Matt Hinze 2009-05-21T17:35:17Z 2009-05-21T17:35:17Z <pre><code>var list = from s in db.List orderby s.Descript select new SelectListItem { Text = s.Descript, Value = s.ID.ToString(), Selected = (s.ID == ID) }; list.Insert(0, new SelectListItem { Text = "Please Select...", Value = string.Empty }); return list; </code></pre> http://stackoverflow.com/questions/894103/how-to-make-asp-net-development-server-run-on-port-80/894119#894119 6 Answer by Matt Hinze for How to make ASP.NET development server run on port 80? Matt Hinze 2009-05-21T17:31:15Z 2009-05-21T17:31:15Z <p>Project properties > Web > select Specific Port and fill in <code>80</code></p> http://stackoverflow.com/questions/894072/net-mvc-passing-nested-data-from-controller-to-view/894112#894112 3 Answer by Matt Hinze for .Net MVC Passing Nested Data from Controller to View Matt Hinze 2009-05-21T17:29:31Z 2009-05-21T17:29:31Z <p>I would stay away from XML here. Pass the proper hierarchy; that seems reasonable:</p> <pre><code>public class ViewModel { Category[] Categories { get; set; } } public class Category { Item[] Items { get; set; } } public class Item { Item[] SubItems { get; set; } } </code></pre> <p>then you can have nested <code>foreach</code> loops inside your view.</p> http://stackoverflow.com/questions/767423/hidden-features-of-asp-net-mvc-and-mvccontrib/892774#892774 0 Answer by Matt Hinze for Hidden Features of ASP.NET MVC (and MvcContrib) Matt Hinze 2009-05-21T12:49:55Z 2009-05-21T12:49:55Z <p>The most hidden feature of ASP.NET MVC is that features don't exist. </p> <p>In other words, the framework was designed to be extended.</p> http://stackoverflow.com/questions/882405/reportviewer-datasource-in-asp-net-mvc/882500#882500 Comment by Matt Hinze on Reportviewer datasource in asp.net-mvc Matt Hinze 2009-11-22T17:47:36Z 2009-11-22T17:47:36Z yeah.. i know. we've moved completely away from tools like this btw. in favor of a tool that converts html to pdf (using the CSS3 stuff for page headers, etc) http://stackoverflow.com/questions/882405/reportviewer-datasource-in-asp-net-mvc/882500#882500 Comment by Matt Hinze on Reportviewer datasource in asp.net-mvc Matt Hinze 2009-11-13T20:08:48Z 2009-11-13T20:08:48Z First of all, I'm sorry you have to work with this horrible tool. The BindingSource is a &quot;control&quot; you can &quot;drag&quot; to the designer surface. http://stackoverflow.com/questions/123327/what-is-the-best-practice-for-creating-an-asp-net-mvc-control-or-helper/123716#123716 Comment by Matt Hinze on What is the best practice for creating an ASP.NET MVC control or helper? Matt Hinze 2009-07-26T22:34:34Z 2009-07-26T22:34:34Z we've actually abandoned subcontrollers at this point. currently we're using renderaction and renderpartial and htmlhelper extensions (to codify renderaction/renderpartial calls) http://stackoverflow.com/questions/1043246/nhibernate-starting-performance/1043253#1043253 Comment by Matt Hinze on nhibernate starting performance Matt Hinze 2009-06-25T10:54:30Z 2009-06-25T10:54:30Z .. which should happen just once when the app starts. http://stackoverflow.com/questions/132676/which-orm-for-net-would-you-recommend/132949#132949 Comment by Matt Hinze on Which ORM for .net would you recommend? Matt Hinze 2009-06-22T19:40:56Z 2009-06-22T19:40:56Z why do you need linq support? http://stackoverflow.com/questions/773169/can-i-get-the-parameters-used-in-an-expectation-in-rhino-mocks/773269#773269 Comment by Matt Hinze on Can I get the parameters used in an expectation in Rhino Mocks? Matt Hinze 2009-06-05T13:10:13Z 2009-06-05T13:10:13Z It's fine to use null with IgnoreArguments and Constraints. The constraints are asserting on the arguments. http://stackoverflow.com/questions/934393/nhibernate-mapping-encapsulating-a-list-within-an-object/934437#934437 Comment by Matt Hinze on Nhibernate mapping: Encapsulating a list within an object. Matt Hinze 2009-06-02T17:14:16Z 2009-06-02T17:14:16Z Why are you concerned about your notation at this point? http://stackoverflow.com/questions/916808/how-to-rollback-to-a-previous-revision-and-keep-going/916845#916845 Comment by Matt Hinze on How to rollback to a previous revision and keep going Matt Hinze 2009-05-27T16:52:53Z 2009-05-27T16:52:53Z What he said. The trick is, as mentioned, <b>&quot;revert changes from this revision&quot;</b>.. which gets really confusing since &quot;revert to this revision&quot; is an option. http://stackoverflow.com/questions/912437/refactor-to-design-pattern-displaying-hiding-different-combinations-of-controls/912487#912487 Comment by Matt Hinze on Refactor to Design Pattern: displaying/hiding different combinations of controls based on state Matt Hinze 2009-05-26T21:00:20Z 2009-05-26T21:00:20Z and the tests, yep. would take about 1 minute with resharper or another tool. http://stackoverflow.com/questions/901651/where-is-the-testdriven-net-options-pane/901676#901676 Comment by Matt Hinze on Where is the TestDriven.NET Options Pane? Matt Hinze 2009-05-23T15:32:16Z 2009-05-23T15:32:16Z nah.. i hunted around for it for a few minutes too. http://stackoverflow.com/questions/842334/where-in-your-solution-do-you-typically-put-your-structuremap-registry-classes/880808#880808 Comment by Matt Hinze on Where in your solution do you typically put your StructureMap Registry classes? Matt Hinze 2009-05-23T13:56:27Z 2009-05-23T13:56:27Z that's part of the point: don't reference your ioc project in your web project. check out codecampserver. your ioc project shouldn't need a reference to your test project. http://stackoverflow.com/questions/900298/custom-binding-in-asp-net-mvc-changing-the-binding-behavior-on-a-single-field Comment by Matt Hinze on Custom Binding in ASP.NET MVC - Changing the Binding Behavior on a Single Field Matt Hinze 2009-05-22T23:49:55Z 2009-05-22T23:49:55Z no, just for binding to action parameters of that type. i posted some code. good luck http://stackoverflow.com/questions/900298/custom-binding-in-asp-net-mvc-changing-the-binding-behavior-on-a-single-field Comment by Matt Hinze on Custom Binding in ASP.NET MVC - Changing the Binding Behavior on a Single Field Matt Hinze 2009-05-22T23:03:49Z 2009-05-22T23:03:49Z why are you opposed to writing a custom binder? you could encapsulate most of this logic in a class and the model binder would be remarkably simple. http://stackoverflow.com/questions/899026/whats-the-fastest-way-to-get-the-partial-value-of-a-number-in-c Comment by Matt Hinze on What's the fastest way to get the partial value of a number in C#? Matt Hinze 2009-05-22T17:34:47Z 2009-05-22T17:34:47Z you mean faster as in performance? http://stackoverflow.com/questions/897336/creating-mvc-views-that-are-not-html/897353#897353 Comment by Matt Hinze on Creating MVC Views that are not HTML Matt Hinze 2009-05-22T11:45:47Z 2009-05-22T11:45:47Z you have an action on a <i>controller</i> that returns the XML.