0
votes
Best mock framework that can do both WebForms and MVC?
This is sort of a silly question, but I prefer Rhino Mocks as it represents a more complete understanding of mocks vs. …
4
votes
2
votes
Has anyone moved to NHibernate 2.0 in a production environment?
Yes..
Here are the gotchas (a more detailed discussion here):
Flush after Delete
Expression nam …
4
votes
What’s the best way to implement field validation using ASP.NET MVC?
There are some new validation features in Preview 5.
http:/ …
3
votes
Have you got a CascadingDropDown working with ASP.NET MVC?
jQuery, action, return JSON.
http://devlicio.us/blogs/mike_ …
5
votes
-1
votes
List<BusinessObject> or BusinessObjectCollection?
this is the way:
return arrays, accept IEnumerable<T>
=)
…
7
votes
IList.Cast<typeof(T)>() returns error, syntax looks ok
@Jonathan Holland you are incorrect. T is not a type nor a System.Type. T is a type parameter. typeof(T) returns the type of T. …
1
vote
IList.Cast<typeof(T)>() returns error, syntax looks ok
@Jonathan Holland
T is already a type parameter, you don't need to call typeof on it. TypeOf takes a type and returns its type parameter. …
1
vote
Asp.Net MVC: How to determine if you’re currently on a specific view
Here is something a little different, use a FilterAttribute:
[NavigationLocationFilter("Products")]
public ViewResult List()
{
return View();
}
...
…
1
vote
NHibernate.MappingException: No persister for:
Should it be name="Id"? Typos are a likely cause.
Next would be to try it out with a non-generic test to make sure you're passing in the proper type parameter.
Can you …
0
votes
Constructor parameters for controllers without a DI container for ASP.NET MVC
You can create an IModelBinder that spins up an instance from a factory - or, yes, the container. =)
…
33
votes
What is Castle Windsor, and why should I care?
Castle Windsor is an inversion of control tool. There are others like it.
It can give you objects with pre-built and pre-wired dependencies right in there. An entire object graph …
1
vote
Controlling access to an internal collection in c# - Pattern required
Wow, there are some overly complex answers here for a simple problem.
Have a private List<T>
Have an public void AddItem(T item) method - whenever y …
1
vote
Compile-time error for NotSupportedException in subclass function
Make it abstract with no implementation and fail to implement it in the derived class.
…
