User Tim Scott - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T14:15:00Z http://stackoverflow.com/feeds/user/29493 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1634161/how-do-i-use-notepad-or-other-with-msysgit/1780216#1780216 0 Answer by Tim Scott for How do I use Notepad++ (or other) with msysgit? Tim Scott 2009-11-22T22:22:11Z 2009-11-22T22:22:11Z <p>This works for me:</p> <blockquote> <p>git config --global core.editor C:/Progra~1/Notepad++/notepad++.exe</p> </blockquote> http://stackoverflow.com/questions/1617795/dry-in-the-mvc-view/1709620#1709620 0 Answer by Tim Scott for DRY in the MVC View Tim Scott 2009-11-10T17:16:41Z 2009-11-10T17:16:41Z <p>InputBuilders are one option. With FluentHtml you could create a custom element, something like this:</p> <pre><code>public class TextBoxInContainer : TextInput&lt;TextBox&gt; { public TextBoxInContainer (string name) : base(HtmlInputType.Text, name) { } public TextBoxInContainer (string name, MemberExpression forMember, IEnumerable&lt;IBehaviorMarker&gt; behaviors) : base(HtmlInputType.Text, name, forMember, behaviors) { } protected override ToString() { divBuilder = new TagBuilder(HtmlTag.Div); divBuilder.InnerHtml = ToString(); return divBuilder.ToString(TagRenderMode.SelfClosing); } } </code></pre> <p>To use this from your view you would extend IViewModelContainer something like this:</p> <pre><code>public static MyTextBox TextBoxInContainer &lt;T&gt;(this IViewModelContainer&lt;T&gt; view, Expression&lt;Func&lt;T, object&gt;&gt; expression) where T : class { return new TextBoxInContainer (expression.GetNameFor(view), expression.GetMemberExpression(), view.Behaviors) .Value(expression.GetValueFrom(view.ViewModel)); } </code></pre> <p>Then if you want to change your container to a span sitewide, you change the ToString method of TextBoxInContainer.</p> http://stackoverflow.com/questions/1674013/using-mvc-contrib-fluenthtml-in-views/1709394#1709394 1 Answer by Tim Scott for Using MVC Contrib FluentHtml in Views Tim Scott 2009-11-10T16:45:26Z 2009-11-10T16:45:26Z <p>You will not lose anything. MvcContrib.FluentHtml.ModelViewPage&lt;T&gt; derives from System.Web.Mvc.ViewPage&lt;T&gt;.</p> http://stackoverflow.com/questions/1682375/how-to-set-foreign-key-object-using-entity-framework-and-fluenthtml/1709374#1709374 1 Answer by Tim Scott for How to set Foreign Key object using Entity Framework and FluentHtml Tim Scott 2009-11-10T16:42:54Z 2009-11-10T16:42:54Z <p>You are encountering one of the many complications that arise from using business objects as your view models. I might suggest that in the long run, it's much less trouble if you transform business objects to lightweight view models for rendering and binding. Let your service layer (or controller, if you must) figure out how to set Foo.Bar based on EditFoo.BarId.</p> http://stackoverflow.com/questions/1527363/reflection-vs-compile-to-get-the-value-of-memberexpression 1 Reflection vs. Compile To Get The Value Of MemberExpression Tim Scott 2009-10-06T18:48:14Z 2009-10-06T22:58:31Z <p>How can I achieve this without using Compile() but just with normal reflection?</p> <pre><code>var value = Expression.Lambda(memberExpression).Compile().DynamicInvoke(); </code></pre> <p>I want this to be able to run on an IPhone (MonoTouch), which does not allow dynamic compiling.</p> <p>UPDATE: Here is more context. This is the code I am working on:</p> <pre><code>if (expression.Expression is ConstantExpression) { var constantExpression = (ConstantExpression)expression.Expression; var fieldInfo = constantExpression.Value.GetType().GetField(expression.Member.Name, BindingFlags.Instance | BindingFlags.Public | BindingFlags.NonPublic); if (fieldInfo != null) { return fieldInfo.GetValue(constantExpression.Value); } { var propertyInfo = constantExpression.Value.GetType().GetProperty(expression.Member.Name, BindingFlags.Instance | BindingFlags.Public | BindingFlags.NonPublic); if (propertyInfo != null) { return propertyInfo.GetValue(constantExpression.Value, null); } } } else { return Expression.Lambda(expression.Expression).Compile().DynamicInvoke(); } </code></pre> <p>As you can see, the code in the if block uses no runtime compilation to obtain the value. My goal is that the code in the in the else block <strong>not</strong> use runtime compilation either.</p> http://stackoverflow.com/questions/310126/post-build-exited-with-code-1 1 Post Build exited with code 1 Tim Scott 2008-11-21T20:41:53Z 2009-10-06T15:25:34Z <p>I have project with a post build event:</p> <pre><code>copy $(ProjectDir)DbVerse\Lunaverse.DbVerse.*.exe $(TargetDir) </code></pre> <p>I works fine every time on my machine. I have a new developer who always gets the "exited with code 1" error. I had her run the same command in at a DOS prompt, and it worked fine. What could be causing this? Is there any way to get to the real error?</p> <p>We are both using Visual Studio 2008.</p> http://stackoverflow.com/questions/1240057/integrating-automated-web-testing-into-build-process/1249721#1249721 1 Answer by Tim Scott for Integrating Automated Web Testing Into Build Process Tim Scott 2009-08-08T19:39:53Z 2009-08-10T21:23:12Z <p>Why do you need to copy code? Ditch Cassini and let Visual Studio create a virtual directory for you. Sure the devs must remember to build before running web tests if the web app has changed. We have found that this is not a big deal, especially if you run web tests in CI.</p> <p>Data is a big challenge. As far as I can see, you must choose between imperfect alternatives. Here's how we handle it. First, I should explain that we are working with a large complex legacy WebForms app. Also I should mention that the domain code is not well-suited for creating test data from within the test project. </p> <p>This left us with a couple of choices. We could: (a) run data setup scripts under the build, or (b) create all data via web tests using the actual web site. The problem with option (a) is that tests become coupled with scripts at a minute level. It makes my head throb to think about synchronizing web test code with T-SQL. So we went with (b). </p> <p>One benefit of (b) is that your setup also validates application behavior. The problem is...<em>time</em>. </p> <p>Ideally tests should be independent, without temporal coupling (can run in any order) and not sharing any context (e.g., common test data). The common way to handle this is to set up and tear down data with every test. After some careful thought, we decided to break this rule.</p> <p>We use Gallio (MbUnit 3), which provides some nice features that support our strategy. First, it lets you specify execution order at the fixture and test level. We have four "setup" fixtures which are ordered -4, -3, -2, -1. These run in the specified order and before all "non setup" fixtures, which by default have an order of 0. </p> <p>Our web test project depends on the build script for one thing only: a single well-known username/password. This is a coupling I can live with. As the setup tests run they build up a "data context" object that holds identifiers of data (companies, users, vendors, clients, etc.) that is later used (but never changed) throughout other all fixtures. (By identifiers, I don't necessarily mean keys. In most cases our web UI does not expose unique keys. We must navigate the app using names or other proxies for true identifiers. More on this below.)</p> <p>Gallio also allows you to specify that a test or fixture depends on another test or fixture. When a precedent fails, the dependent is skipped. This reduces the evil of temporal coupling by preventing "cascading failures" which can reap much confusion.</p> <p>Creating baseline test data once, instead of before each test, speeds things up a lot. However, the setup tests still might take 10 minutes to run. When I'm working on new tests I want to run and rerun them frequently. Enter another cool Gallio feature: Ambience. Ambience is a wrapper around DB4 that provides a very simple way to persist objects. We use it to persist the data context automatically. Thus setup tests must only be run once between rebuilds of the database. After that you can run any or all other fixtures repeatedly.</p> <p>So what about cleaning up test data? Don't we need to start from a known state? This is a rule we have found it expedient to break. A strategy that is working for us is to use long random values for things like company name, username, etc. We have found that it is not very difficult to keep a test run inside a logical "data space" such that it does not bump into other data. Certainly I fear the day that I spend hours chasing down a phantom failing test only to find that it's some data collision. It's a trade off that is working for us currently.</p> <p>We are using Watin. I quite like it. Another key to success is something Scott Bellware alluded to. As we create tests we are building up an abstract model of our UI. So instead of this:</p> <pre><code>browser.TextField("ctl0_tab2_newNote").TypeText("foo"); </code></pre> <p>You will see this in our tests:</p> <pre><code>User.NotesTab.NewNote.TypeText("foo"); </code></pre> <p>This approach provides three benefits. First, we never repeat a magic string. This greatly reduces brittleness. Second, tests are much easier to read and understand. Last, we hide most of the the Watin framework behind our own abstractions. In the second example, only TypeText is a Watin method. This will make it easier to change as the framework changes.</p> <p>Hope this helps.</p> http://stackoverflow.com/questions/363234/url-form-action-without-viewcontext 0 Url Form Action Without ViewContext Tim Scott 2008-12-12T16:21:08Z 2009-05-24T04:27:09Z <p>Is it possible to get a URL from an action without knowing ViewContext (e.g., in a controller)? Something like this:</p> <pre><code>LinkBuilder.BuildUrlFromExpression(ViewContext context, Expression&lt;Action&lt;T&gt;&gt; action) </code></pre> <p>...but using Controller.RouteData instead of ViewContext. I seem to have metal block on this.</p> http://stackoverflow.com/questions/778772/how-can-i-unit-test-the-behaviour-of-the-handleerror-attribute-for-a-controller-m/779375#779375 5 Answer by Tim Scott for How can I Unit-test the behaviour of the HandleError attribute for a controller method? Tim Scott 2009-04-22T21:44:49Z 2009-04-22T21:44:49Z <p>I think you cannot unit test this. Nor do you want to. You can test that the expected exception is thrown by a controller method. Using reflection you can test that the action or controller has the attribute that you expect it to have and that the attribute has certain expected property values. However, the job of intercepting the exception and executing the attribute is behavior of the framework, not your code. Generally speaking you should not test code that is not yours (the framework).</p> http://stackoverflow.com/questions/606607/mapping-collection-of-strings-with-nhibernate/607835#607835 -3 Answer by Tim Scott for Mapping collection of strings with NHibernate Tim Scott 2009-03-03T19:45:40Z 2009-03-03T19:52:38Z <p>You can do this with IUserType like so:</p> <pre><code>public class DelimitedList : IUserType { private const string delimiter = "|"; public new bool Equals(object x, object y) { return object.Equals(x, y); } public int GetHashCode(object x) { return x.GetHashCode(); } public object NullSafeGet(IDataReader rs, string[] names, object owner) { var r = rs[names[0]]; return r == DBNull.Value ? new List&lt;string&gt;() : ((string)r).SplitAndTrim(new [] { delimiter }); } public void NullSafeSet(IDbCommand cmd, object value, int index) { object paramVal = DBNull.Value; if (value != null) { paramVal = ((IEnumerable&lt;string&gt;)value).Join(delimiter); } var parameter = (IDataParameter)cmd.Parameters[index]; parameter.Value = paramVal; } public object DeepCopy(object value) { return value; } public object Replace(object original, object target, object owner) { return original; } public object Assemble(object cached, object owner) { return cached; } public object Disassemble(object value) { return value; } public SqlType[] SqlTypes { get { return new SqlType[] { new StringSqlType() }; } } public Type ReturnedType { get { return typeof(IList&lt;string&gt;); } } public bool IsMutable { get { return false; } } } </code></pre> <p>Then define the IList&lt;string&gt; property as type="MyApp.DelimitedList, MyApp".</p> <p>NOTE: SplitAndTrim is a string extension with various overrides that I created. Here is the core method: </p> <pre><code>public static IList&lt;string&gt; SplitAndTrim(this string s, StringSplitOptions options, params string[] delimiters) { if (s == null) { return null; } var query = s.Split(delimiters, StringSplitOptions.None).Select(x =&gt; x.Trim()); if (options == StringSplitOptions.RemoveEmptyEntries) { query = query.Where(x =&gt; x.Trim() != string.Empty); } return query.ToList(); } </code></pre> http://stackoverflow.com/questions/603958/domain-specific-language-bloggers/603991#603991 4 Answer by Tim Scott for Domain Specific Language Bloggers Tim Scott 2009-03-02T21:04:17Z 2009-03-02T21:04:17Z <p>Martin Fowler is working on a book on DSLs. The <a href="http://martinfowler.com/dslwip/" rel="nofollow">work in progress</a> is online. Ayende Rahien has completed a <a href="http://ayende.com/Blog/archive/2009/03/02/building-domain-specific-languages-with-boo-ndash-full-book-now.aspx" rel="nofollow">book</a> on writing DSLs in Boo, which also is <a href="http://www.manning.com/rahien/" rel="nofollow">available online</a> via Manning's early access program. The former is conceptual while the latter is a practical guide.</p> http://stackoverflow.com/questions/603896/asp-net-mvc-contrib-projects/603912#603912 0 Answer by Tim Scott for ASP.NET MVC Contrib Projects Tim Scott 2009-03-02T20:44:55Z 2009-03-02T20:44:55Z <p>How about <a href="http://www.codeplex.com/MVCContrib" rel="nofollow">MvcContrib</a>? Another thought is <a href="http://code.google.com/p/codecampserver/" rel="nofollow">Code Camp Server</a>, but I'm not sure how active it is in terms of new features.</p> http://stackoverflow.com/questions/563030/where-can-i-find-a-good-nhibernate-and-asp-net-mvc-reference-application/563451#563451 2 Answer by Tim Scott for Where can I find a good NHibernate and ASP.NET MVC Reference Application Tim Scott 2009-02-19T00:13:41Z 2009-02-19T00:13:41Z <p><a href="http://code.google.com/p/codecampserver/" rel="nofollow">Code Camp Server</a></p> http://stackoverflow.com/questions/562577/asp-net-mvc-missing-htmlhelpers/562597#562597 1 Answer by Tim Scott for ASP.NET MVC missing htmlhelpers Tim Scott 2009-02-18T20:05:41Z 2009-02-18T20:05:41Z <p>Some of these are in the experimental assembly, Microsoft.Web.Mvc. Reference that in you project add it to namespaces in web.config.</p> http://stackoverflow.com/questions/545976/can-persistence-ignorance-scale/552008#552008 1 Answer by Tim Scott for Can Persistence Ignorance Scale? Tim Scott 2009-02-16T01:36:36Z 2009-02-16T01:36:36Z <p>It's simply incorrect to say that apps built in an ORM do not scale well. Certainly it has happened before that careless or lazy devs abuse an ORM by writing code that generates horribly inefficient SQL. Building performant apps means understanding something about what all the lovely abstractions <em>actually do</em> under the hood. It does not take much to stay out of this trap however. Using an ORM doesn't mean never opening SQL profiler or <a href="http://www.nhprof.com/" rel="nofollow">NHibernate Profiler</a>.</p> <p>And regarding the claim that SPs are just a whole lot faster, read <a href="http://www.codinghorror.com/blog/archives/000117.html" rel="nofollow">this</a> and <a href="http://weblogs.asp.net/fbouma/archive/2003/11/18/38178.aspx" rel="nofollow">this</a>. And besides, ORMs (NHibernate, at least) give you pretty easy ways to use SPs if you ever need to.</p> http://stackoverflow.com/questions/551050/list-of-html-helpers-you-use/551946#551946 2 Answer by Tim Scott for List of HTML Helpers you use Tim Scott 2009-02-16T00:47:53Z 2009-02-16T00:47:53Z <p>Check out <a href="http://www.codeplex.com/MVCContrib" rel="nofollow">MvcContrib</a>.<a href="http://lunaverse.wordpress.com/2008/11/24/mvcfluenthtml-fluent-html-interface-for-ms-mvc/" rel="nofollow">FluentHtml</a>.</p> http://stackoverflow.com/questions/551933/can-you-explain-the-web-concept-of-restful/551937#551937 -1 Answer by Tim Scott for Can you explain the Web concept of RESTful? Tim Scott 2009-02-16T00:44:20Z 2009-02-16T00:44:20Z <p><a href="http://en.wikipedia.org/wiki/Representational_State_Transfer" rel="nofollow">Wikipedia</a></p> http://stackoverflow.com/questions/270479/build-via-nant-vs-visual-studio-one-dll-missing 2 Build Via NAnt vs Visual Studio - One dll Missing Tim Scott 2008-11-06T21:59:16Z 2009-02-12T22:22:03Z <p>My solution includes these two projects:</p> <ul> <li>MyNamespace.Web.UI</li> <li>MyNamespace.Web.Core</li> </ul> <p>UI references Core, and Core references Foobar.dll, which exists nowhere except my library. When I build from Visual Studio 2008 Foobar.dll is in the UI project's Bin folder as expected. I have made certain it was not there before the build. </p> <p>But when I build from NAnt, it is not there, which results in a runtime exception. Here's what the NAnt task looks like:</p> <pre><code>&lt;target name="compile" depends="init"&gt; &lt;exec program="${framework::get-framework-directory(framework::get-target-framework())}\msbuild.exe" commandline="${solution.file} /m /t:Clean /p:Configuration=${project.config} /v:q" workingdir="." /&gt; &lt;exec program="${framework::get-framework-directory(framework::get-target-framework())}\msbuild.exe" commandline="${solution.file} /m /t:Rebuild /p:Configuration=${project.config} /v:q" workingdir="." /&gt; &lt;/target&gt; </code></pre> <p>In VS I have tried building, rebuilding, rebuilding all in release mode and debug mode, etc. It's always the same. Foobar.dll is in the Bin folder. Not so with NAnt. I have tried also to remove the /m switch from the NAnt script. Same result.</p> <p>There are several other dlls referenced in Core and not in UI, and they appear in Bin as expected after the NAnt build.</p> <p>My workaround is to reference Foobar.dll in the UI project, but that makes me a little nauseous. Any idea what can cause this?</p> <p>(Incidentally Foobar.dll is actually NHibernate.ProxyGenerators.CastleDynamicProxy.dll)</p> http://stackoverflow.com/questions/524936/how-to-maintain-state-of-html-checkbox-in-asp-net-mvc/526735#526735 0 Answer by Tim Scott for How to maintain state of Html.CheckBox() in ASP.NET MVC Tim Scott 2009-02-09T00:12:26Z 2009-02-09T00:12:26Z <p>How are you specifying your checkbox HTML? Binding will require a hidden input element in addition to the checkbox input element. Html.Checkbox will handle this for you, or you can study how it does it and do it yourself.</p> http://stackoverflow.com/questions/524939/how-do-i-apply-conditional-logic-to-determine-which-master-page-to-display-in-asp/526731#526731 2 Answer by Tim Scott for How do I apply conditional logic to determine which master page to display in asp.net? Tim Scott 2009-02-09T00:07:43Z 2009-02-09T00:07:43Z <p>You can specify the master in the View method in your action:</p> <pre><code>return View("MyPage", isCustomer ? "CustomerMasterPage" : "EmployeeMasterPage") </code></pre> http://stackoverflow.com/questions/526641/what-to-put-in-your-viewmodel/526712#526712 3 Answer by Tim Scott for What to put in your ViewModel Tim Scott 2009-02-08T23:57:04Z 2009-02-08T23:57:04Z <p>Some suggest that having one all-encompassing view model per view is ideal (dubbed <a href="http://codebetter.com/blogs/jeremy.miller/archive/2008/10/23/our-opinions-on-the-asp-net-mvc-introducing-the-thunderdome-principle.aspx" rel="nofollow">Thunderdome Principal</a>).</p> http://stackoverflow.com/questions/524086/user-authentication-and-authorisation-in-asp-net-mvc/524791#524791 1 Answer by Tim Scott for User authentication and authorisation in ASP.NET MVC Tim Scott 2009-02-07T23:13:46Z 2009-02-07T23:13:46Z <p>Go with custom. MembershipProvider is way too heavy for my tastes. Yes it's possible to implement it in a simplified way, but then you get a <a href="http://en.wikipedia.org/wiki/Liskov_substitution_principle" rel="nofollow">really bad smell</a> of NotSupportedException or NotImplementedException.</p> <p>With a totally custom implementation you can still use IPrincipal, IIdentity and FormsAuth. And really how hard is it do your own login page and such?</p> http://stackoverflow.com/questions/524409/asp-net-mvc-without-microsoftajax-js-and-microsoftmvcajax-js/524743#524743 0 Answer by Tim Scott for ASP.NET MVC without MicrosoftAjax.js and MicrosoftMvcAjax.js Tim Scott 2009-02-07T22:47:57Z 2009-02-07T22:47:57Z <p>You don't need those. Just remove them. Use JQuery instead.</p> http://stackoverflow.com/questions/246143/how-can-i-get-the-actionname-in-a-actionfilter/521437#521437 2 Answer by Tim Scott for How can I get the actionName in a ActionFilter? Tim Scott 2009-02-06T18:05:51Z 2009-02-06T18:05:51Z <p>FYI, as of RC1, you do it like this:</p> <pre><code>filterContext.ActionDescriptor.ActionName </code></pre> http://stackoverflow.com/questions/520793/which-method-of-model-binding-has-best-unit-test-semantics-in-asp-net-mvc/521394#521394 0 Answer by Tim Scott for Which Method of Model Binding Has Best Unit Test Semantics in ASP.NET MVC? Tim Scott 2009-02-06T17:55:40Z 2009-02-06T17:55:40Z <p>I would always opt for transparency to the context to keep noise out of tests, so the first method is better IMO.</p> <p>Just curious what you like about magic strings over expressions for HTML generation. Is it their invisibility to the compiler, resistance to refactoring, or maybe you hate intellisense. :) Uh oh, I've done it now, started an off topic debate.</p> http://stackoverflow.com/questions/520863/send-asp-net-mvc-action-result-inside-email/521358#521358 4 Answer by Tim Scott for Send asp.net mvc action result inside email Tim Scott 2009-02-06T17:48:51Z 2009-02-06T17:48:51Z <p><a href="http://stackoverflow.com/questions/483091/render-a-view-as-a-string/484932#484932">Here's </a> how to get the view as a string.</p> http://stackoverflow.com/questions/517984/what-is-the-best-way-to-handle-repeating-forms-in-mvc/520729#520729 2 Answer by Tim Scott for What is the best way to handle repeating forms in MVC? Tim Scott 2009-02-06T15:33:50Z 2009-02-06T15:33:50Z <p>Use binding! Don't be iterating the form collection in your actions. </p> <p>Steve Sanderson wrote a <a href="http://blog.codeville.net/2008/12/22/editing-a-variable-length-list-of-items-in-aspnet-mvc/" rel="nofollow">blog post</a> about how to do it. I wrote a <a href="http://lunaverse.wordpress.com/2009/01/13/editing-a-variable-length-list-of-items-with-mvccontribfluenthtml-take-2/" rel="nofollow">blog post</a> on how to do it with <a href="http://www.codeplex.com/MVCContrib" rel="nofollow">MvcContrib</a>.<a href="http://lunaverse.wordpress.com/2008/11/24/mvcfluenthtml-fluent-html-interface-for-ms-mvc/" rel="nofollow">FluentHtml</a>. Both posts are very detailed and include downloadable code.</p> http://stackoverflow.com/questions/506077/abstracting-the-interpretation-of-mvc-checkboxes-values-received-by-the-formscoll/508805#508805 0 Answer by Tim Scott for Abstracting the interpretation of MVC checkboxes values received by the FormsCollection object Tim Scott 2009-02-03T20:33:27Z 2009-02-03T20:33:27Z <p>The default model binder handles this fine. So if you have:</p> <pre><code>public ActionResult Save(bool List_RETAIL_NOTIFICATION) </code></pre> <p>or </p> <pre><code>public ActionResult Save(MyObjectWithABoolPropertyToBeBoundFromACheckBox myObject) </code></pre> <p>is should work fine.</p> http://stackoverflow.com/questions/507208/mvc-bulk-edit-examples/507810#507810 2 Answer by Tim Scott for MVC Bulk Edit - Examples Tim Scott 2009-02-03T16:21:53Z 2009-02-03T20:26:57Z <p>I have <a href="http://lunaverse.wordpress.com/2009/01/13/editing-a-variable-length-list-of-items-with-mvccontribfluenthtml-take-2/" rel="nofollow">written about how to do this</a> with <a href="http://www.codeplex.com/MVCContrib" rel="nofollow">MvcContrib</a>'s FluentHtml. Steve Sanderson has <a href="http://blog.codeville.net/2008/12/22/editing-a-variable-length-list-of-items-in-aspnet-mvc/" rel="nofollow">written about how to do it</a> without FluentHtml. Both of our articles have a sample solution you can download and look at.</p> <p>As far as LinqToSql, I would consider any interaction between bulk editing mechanism (controller and view) and LinqToSql to be a smell. That is to say, as far as possible your UI should be ignorant of your persistence mechanism.</p> http://stackoverflow.com/questions/499669/asp-net-mvc-controls-and-html-helpers/499942#499942 3 Answer by Tim Scott for Asp.net mvc controls and html helpers Tim Scott 2009-02-01T00:55:43Z 2009-02-01T00:55:43Z <p>You might look at FluentHtml in <a href="http://www.codeplex.com/MVCContrib" rel="nofollow">MvcContrib</a> discussed <a href="http://lunaverse.wordpress.com/2008/11/24/mvcfluenthtml-fluent-html-interface-for-ms-mvc/" rel="nofollow">here</a>.</p> http://stackoverflow.com/questions/1682375/how-to-set-foreign-key-object-using-entity-framework-and-fluenthtml/1709374#1709374 Comment by Tim Scott on How to set Foreign Key object using Entity Framework and FluentHtml Tim Scott 2009-11-22T22:34:49Z 2009-11-22T22:34:49Z Monorail (the inspiration for MS MVC) has this: ARDataBind. Having used this I can attest that what at first feels like a pain relief will seriously hurt maintainability, testability and extensibility. Putting persistence concerns into the UI = bad. About the &quot;nearly identical&quot; objects, take a look at AutoMapper. However, if your objects are nearly identical you might have fallen into the anemic doamin anti-pattern. http://stackoverflow.com/questions/1527363/reflection-vs-compile-to-get-the-value-of-memberexpression/1527409#1527409 Comment by Tim Scott on Reflection vs. Compile To Get The Value Of MemberExpression Tim Scott 2009-10-06T22:50:52Z 2009-10-06T22:50:52Z What you say is not totally correct. I know, for example, that in the case that memberExpression.Expression is a ConstantExpression you can get its value by reflecting on the constant expression's Value property. My problem is that when it's not a ConstantExpression, I cannot figure how to get a handle on the instance that holds the value. http://stackoverflow.com/questions/1229306/generate-pdf-in-net Comment by Tim Scott on Generate PDF in .NET Tim Scott 2009-08-04T20:00:12Z 2009-08-04T20:00:12Z The most recent activity on this &quot;duplicate&quot; question was 11 months ago. Things change a log in a year. OSS projects are born and die in that time. I would be happy to &quot;awaken&quot; the old question instead of posting a new one. How would I do that? Please advise. http://stackoverflow.com/questions/525098/whitelist-model-binding-doesnt-seem-to-work-with-complex-properties Comment by Tim Scott on Whitelist Model Binding doesn't seem to work with complex properties Tim Scott 2009-02-09T00:04:22Z 2009-02-09T00:04:22Z You wrote, &quot;User object and has two fields (email &amp; password).&quot; Did you mean to say that User object has a property &quot;credentials&quot; that has two properties &quot;emailAddress&quot; and &quot;password&quot;? http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/8637#8637 Comment by Tim Scott on Practical non-image based CAPTCHA approaches? Tim Scott 2009-02-07T22:41:06Z 2009-02-07T22:41:06Z Here's a twist on this that I use. Make the hidden value an encrypted time set to now. Upon post back, verify that between 10 seconds and 10 minutes has elapsed. This foils tricksters who would try to plug in some always-valid value. http://stackoverflow.com/questions/518868/maintaing-state-in-asp-net-mvc-when-youre-not-using-the-ui-helpers/518888#518888 Comment by Tim Scott on Maintaing state in ASP.NET MVC when you're not using the UI helpers Tim Scott 2009-02-06T15:26:23Z 2009-02-06T15:26:23Z FYI, as of RC1 you can specify Model.Name (don't need ViewData prefix). http://stackoverflow.com/questions/516314/how-do-you-do-validation-in-asp-net-mvc-rc/516372#516372 Comment by Tim Scott on How do you do validation in ASP.NET MVC RC? Tim Scott 2009-02-05T17:18:12Z 2009-02-05T17:18:12Z It also works with DefaultModelBinder, that is simply accepting a complex type as a parameter to a controller action. http://stackoverflow.com/questions/506077/abstracting-the-interpretation-of-mvc-checkboxes-values-received-by-the-formscoll/508805#508805 Comment by Tim Scott on Abstracting the interpretation of MVC checkboxes values received by the FormsCollection object Tim Scott 2009-02-04T17:38:23Z 2009-02-04T17:38:23Z When I say to name checkboxes with an indexer, I am talking about like this: <a href="http://haacked.com/archive/2008/10/23/model-binding-to-a-list.aspx" rel="nofollow">haacked.com/archive/2008/&hellip;</a> http://stackoverflow.com/questions/506077/abstracting-the-interpretation-of-mvc-checkboxes-values-received-by-the-formscoll/508805#508805 Comment by Tim Scott on Abstracting the interpretation of MVC checkboxes values received by the FormsCollection object Tim Scott 2009-02-04T17:35:30Z 2009-02-04T17:35:30Z A good solution might be to give them corresponding properties in your model -- i.e., an enumerable that you would you populate from your data. In your view generate checkboxes by iterating over that enumerable and naming checkboxes with an indexer. DefaultModelBinder should handle that. http://stackoverflow.com/questions/494332/nhibernate-ilist-to-list/494349#494349 Comment by Tim Scott on NHibernate IList to List Tim Scott 2009-02-01T21:18:44Z 2009-02-01T21:18:44Z The best solution would be to change the gateway to take an IList (or better ICollection or IEnumerable) instead of concrete type. Keep use of concrete types to the narrowest scope possible. http://stackoverflow.com/questions/410202/do-you-plan-move-from-asp-net-web-forms-to-asp-net-mvc/410268#410268 Comment by Tim Scott on Do you plan move from ASP.Net Web Forms to ASP.Net MVC? Tim Scott 2009-01-04T23:19:29Z 2009-01-04T23:19:29Z It's only slower to develop in the case of: 1) super-simple sites where drag-and-drop development will suffice, 2) You are a super duper expert in ASP life cycle, viewstate, server control customiztion (and that's only until you lean MVC). http://stackoverflow.com/questions/407770/mapping-individual-buttons-on-asp-net-mvc-view-to-controller-actions/408006#408006 Comment by Tim Scott on Mapping individual buttons on ASP.NET MVC View to controller actions Tim Scott 2009-01-03T15:18:07Z 2009-01-03T15:18:07Z This answer is correct. I would add that, whereas the element names can and should be the repeated for each form, each element should have a unique ID. http://stackoverflow.com/questions/363234/url-form-action-without-viewcontext/365469#365469 Comment by Tim Scott on Url Form Action Without ViewContext Tim Scott 2008-12-15T00:40:13Z 2008-12-15T00:40:13Z I was able to figure out how to stub HttpContext to make this work in tests. The missing price was: SetupResult.For(request.AppRelativeCurrentExecutionFilePath).Return(&quot;~/&quot;); http://stackoverflow.com/questions/363234/url-form-action-without-viewcontext/365469#365469 Comment by Tim Scott on Url Form Action Without ViewContext Tim Scott 2008-12-13T19:24:24Z 2008-12-13T19:24:24Z Okay, this is a problem for testing controllers (any approach that uses Routes and RequestContext). I cannot figure how to correctly stub HttpContext (even after some fun with Reflector). I will put behind an interface to make controller more easily testable. http://stackoverflow.com/questions/363234/url-form-action-without-viewcontext/363287#363287 Comment by Tim Scott on Url Form Action Without ViewContext Tim Scott 2008-12-12T19:05:28Z 2008-12-12T19:05:28Z I don't understand then. Let's say I want to get the Url for FooController.Bar(&quot;foo&quot;, &quot;bar&quot;), which would be &quot;/MyVirtualDir/Foo.mvc/Bar/foo/bar&quot;. How could I use this to get that in a (different) controller method?