This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var result = Controller.Create(...); | |
result.ShouldBeRedirectTo("Customers", "Index"); | |
// instead of: | |
var result = Controller.Create(...); | |
var redirectResult = result as RedirectResult; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class ArrayModelBinder : IFilteredPropertyBinder | |
{ | |
private static readonly Regex IdRegex = new Regex("(?<=_)[0-9]+(?=_)"); | |
public bool IsMatch(Type modelType) | |
{ | |
return modelType.IsArray; | |
} | |
public void BindProperty(IModelBinder binder, ControllerContext controllerContext, ModelBindingContext bindingContext, PropertyDescriptor propertyDescriptor) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* jQuery.require - Require/include plugin for including necessary scripts | |
* | |
* Copyright (c) 2010, James Gregory ([email protected]) | |
* All rights reserved. | |
* | |
* Redistribution and use in source and binary forms, with or without modification, are permitted provided that | |
* the following conditions are met: | |
* | |
* o Redistributions of source code must retain the above copyright notice, this list of conditions and the |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var validator = $('form').validate({ | |
rules: { | |
number: { | |
remote: { | |
url: 'UniqueNumber', | |
dataType: 'json', | |
success: function(data) { | |
if (data.unique == true) { | |
return; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
So you've cloned somebody's repo from github, but now you want to fork it and contribute back. Never fear! | |
Technically, when you fork "origin" should be your fork and "upstream" should be the project you forked; however, if you're willing to break this convention then it's easy. | |
* Off the top of my head * | |
1. Fork their repo on Github | |
2. In your local, add a new remote to your fork; then fetch it, and push your changes up to it | |
git remote add my-fork [email protected] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class SomeService | |
{ | |
public string GetValues() | |
{ | |
return "huzzah"; | |
} | |
} | |
public class Person | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Fluent Mappings | |
--------------- | |
Sources scanned: | |
Examples.FirstProject, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null | |
Mappings discovered: | |
EmployeeMap | Examples.FirstProject.Mappings.EmployeeMap, Examples.FirstProject, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Fluently.Configure() | |
.Mappings(...) | |
.Database(...) | |
.Diagnostics(dia => | |
{ | |
dia.Enable(); | |
dia.OutputToConsole(); | |
}) | |
.BuildSessionFactory(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static class RhinoMocksExtensions | |
{ | |
public static IMethodOptions<IEnumerable<T>> ReturnEmptySet<T>(this IMethodOptions<IEnumerable<T>> options) | |
{ | |
return options.Return(new T[0]); | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class MyAutomappingConfiguration : DefaultAutomappingConfiguration | |
{ | |
public override bool ShouldMap(Member member) | |
{ | |
return base.ShouldMap(member) && member.CanWrite; | |
} | |
} |