I've been directed to an very nice article that shows how to create a Custom Validator from start to finish. My only problem is that this only works on single fields: http://haacked.com/archive/2009/11/19/aspnetmvc2-custom-validation.aspx
What if I need to validate against 2 or more properties in my Model? How can I pass my entire Model into the Validator?
NOTE: To be clear, I really don't want to have to resort to validating the entire model on post back... that would defeat the purpose of this method.