FubuMvcArchive / fubuvalidation

FubuValidation -- have validation your way, whatever way that happens to be

Home Page:http://validation.fubu-project.org

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Default filter needs to Ignore chains without symmetrical models

jmarnold opened this issue · comments

The FubuContinuation does a relaxed search so if you have an action call like:

post_account_create(CreateAccount input)

But your corresponding GET isn't using the same model:

get_account_create(CreateAccountInput request)

You effectively get a StackOverflow when validation fails:
https://github.com/DarthFubuMVC/fubuvalidation/blob/master/src/FubuMVC.Validation/ValidationActionFilter.cs#L46