Tagged Questions

CodePlex site

learn more… | top users | synonyms

7
votes
2answers
600 views

Fluent Validation vs. Data Annotations [closed]

Which approach for ASP.NET MVC validatation do you prefer and why? Fluent Validation? Data annotations? Any other?
7
votes
4answers
378 views

date validation

how we used data validation on asp.net? date can't be insert greater than the current date.
7
votes
6answers
489 views

Best practices for input validation in ASP.NET?

What is the common practice of input validation? In other words do you check for input validation on client-side, on server-side or on both sides? Also, if performance is crucial to me, would just ...
6
votes
1answer
500 views

Using ViewModel in ASP.NET MVC with FluentValidation

I am using ASP.NET MVC with Entity Framework POCO classes and the FluentValidation framework. It is working well, and the validation is happening as it should (as if I were using DataAnnotations). I ...
5
votes
2answers
388 views

FluentValidation client-side validation

I tried to use GreaterThen validator and it looks like it doesn't support client-side validation. Is there a list of FluentValidation validators which support client-side validation?
4
votes
1answer
93 views

Chaining rules that depend on each other

I am using Fluent Validation in my project. In my ViewModel I have a property that is of type string, valid values are only string representing positive integers. So, I created a simple ...
4
votes
1answer
178 views

ASP.NET MVC3 Fluent Validation Constructor hit multiple times per request

I have an ASP.NET MVC3 website setup using fluent validation and ninject. The validation code is working. However, I set a break point in the validation class constructor and I noticed that when I ...
4
votes
1answer
335 views

Validation message contain '{PropertyName}' instead of name of property

I use fluent validation with client side unobtrusive validation. <fieldset class="edit-root-form"> <p> @Html.LabelFor(model => model.Login, UserRes.Login) ...
4
votes
2answers
550 views

how to represent a list of U.S. States

Trying to do TDD against FluentValidation and Looking for the proper way to represent a list of US States. For example, I have an "Address" object. I would like to write a test (and a ...
4
votes
3answers
2k views

Regular Expression Validator does not validate empty textbox

I would like to validate the textbox for specific text and it must not be blank. But the regular expression validator is not validating if the text box is BLANK. However, it validates if I type ...
4
votes
4answers
161 views

a basic issue in implementing validations through properties ? Please guide me

thanks for your attention and time. I want to implement validations in settter of properties. Here is an issue where your expert help is required please. I have idea of how I will do validations ...
3
votes
1answer
82 views

Where to place service layer

I'm using FluentValidation framework. And at the moment I have several validators (per entity). I'm keeping entities in a separate assembly (ProjectName.Domain) and validators either. I've read ...
3
votes
2answers
149 views

Validate DateTime with FluentValidator

This is my ViewModel class: public class CreatePersonModel { public string Name { get; set; } public DateTime DateBirth { get; set; } public string Email { get; set; } } ...
3
votes
1answer
181 views

Ninject.MVC3 + FluentValidation + Factory Has anyone used?

I am in doubt about how to use the factory in Ninject and FluentValidatior. This article helped me a lot, but I do not understand how to use the factory to instantiate my validators: I also found ...
3
votes
2answers
516 views

Customizing model binding error messages in ASP.NET MVC 3

I'm using ASP.NET MVC 3 with Fluent Validation. I'd like all my error messages to be worded and formatted the same, whether they are validation error messages or model binding error messages. Let's ...
3
votes
2answers
354 views

Ninjects with fluentvalidation

I am looking for some help on how to implement the fluentvalidation framework with ninjects as DI framework. There is a ninject extension but i can't find documentation on how to use it. Where can ...
3
votes
3answers
1k views

Fluent Validations. Error: Validation type names in unobtrusive client validation rules must be unique

I got the erorr: Validation type names in unobtrusive client validation rules must be unique. The following validation type was seen more than once: required. The following validation ...
3
votes
2answers
156 views

Fluent Validations. Inheritos validations rules

I used Fluent Validator. But sometimes I need create inheritos rules. For example: [Validator(typeof(UserValidation))] public class UserViewModel { public string FirstName; public string ...
2
votes
4answers
178 views

Fluent Validation in ASP.net MVC - Database Validations

I'm using the Fluent Validation framework in my ASP.net MVC 3 project. So far all of my validations have been very simple (make sure string is not empty, only a certain length, etc.) but now I need to ...
2
votes
2answers
127 views

Greater than or equals comparison against an enum with Fluent Validation?

Ok, let's say I'm trying to validate an object conditionally based upon the value of an enum, how can I do that? Here's a sample call to validate the object. MyObjectValidator validator = new ...
2
votes
2answers
39 views

Custom property name based on object under validation

I have the following classes, they are bit simplified for example. class LineInfo { Id, LineNumber, SubAccountNumer, MobileNumber } class SuspendLinesVM{ public ...
2
votes
3answers
261 views

A `ViewModel` for each page (`Create.cshtml` and `Edit.cshtml`)?

Questions There are actually two related questions: Should I create a ViewModel for each page? If you do not have problems in creating a single ViewModel class for the two pages (Create.cshtml and ...
2
votes
2answers
193 views

ASP.net MVC Validation Hook

I have the following view in ASP.net MVC 3: @model Models.CreateProjectViewModel <script type="text/javascript" src="@Url.Content("~/Scripts/jquery.validate.min.js")"></script> ...
2
votes
1answer
170 views

Injecting a DbContext into a FluentValidation validator

I am using the FluentValidation library to enforce a unique constraint on one of my models: public class Foo { // No two Foos can have the same value for Bar public int Bar { get; set; } } ...
2
votes
1answer
286 views

Fluent Validation and IoC (Unique Field)

I'm developing a web application with asp.net mvc 3 and DDD. For my domain model validation, I've been using Fluent Validation. It's my first project with fluent validation and I'm still learning and ...
2
votes
2answers
602 views

Domain object validation vs view model validation

I am using ASP.NET MVC 3 and I am using FluentValidation to validate my view models. I am just a little concerned that I might not be on the correct track. As far as what I know, model validation ...
2
votes
1answer
407 views

Castle Windsor and Fluent Validation as an MVC Validator

I have setup my MVC project to use Fluent Validation and Castle Windsor and everything is working wonderfully. I am using a custom Validator Factory to take into account that I am also using Entity ...
2
votes
4answers
284 views

Any .NET Fluent Argument checking libraries out there?

while looking at Shrinkr's source code (we all review other project's source code to learn, right??? :) ) I noticed the following kewl code .. (abbreviated by me, below) public virtual Foo Foo { ...
2
votes
3answers
194 views

Sensible pattern for ValidationError class in C#

I am about to implement a class to represent a validation error. The class would definitely contain a string value called Message, which is a default message to display to a user. I also need a way to ...
2
votes
2answers
758 views

Using FluentValidation with Castle Windsor and Entity Framework 4.0 (POCO) in MVC2

This isn't a very simple question, but hopefully someone has run across it. I am trying to get the following things working together: MVC2 FluentValidation Entity Framework 4.0 (POCO) Castle ...
2
votes
1answer
492 views

Validate a single property with the Fluent Validation Library for .Net

Can you validate just a single property with the Fluent Validation Library, and if so how? I thought this discussion thread from January of 2009 showed me how to do it via the following syntax: ...
2
votes
1answer
449 views

How to validate a string as DateTime using FluentValidation

With FluentValidation, is it possible to validate a string as a parseable DateTime without having to specify a Custom() delegate? Ideally, I'd like to say something like the EmailAddress function, ...
1
vote
1answer
31 views

Fluent validation (can't start)

My question is about http://fluentvalidation.codeplex.com library. I download .dll's from this link and include in project library FluentValidation.Mvc.dll using FluentValidation.Mvc; class ...
1
vote
0answers
58 views

FluentValidation.Net doesn't produce client side unobtrusive validation when using .SetValidator()

I'm trying to get client side validation working for a page that uses editor templates. A simplified example of my view model is e.g.: [Validator(typeof(ValidationTestModelValidator))] public ...
1
vote
0answers
44 views

How to unit test child validators with When() condition with FluentValidation.TestHelper

The extension method .ShouldHaveChildValidator() in the FluentValidation.TestHelper namespace doesn't have an overload that takes the model. How do I then test that the child validators are set up ...
1
vote
2answers
105 views

Selective validation of child properties - Fluent Validation in MVC

I'm using Fluent Validation with the Ninject.Web.Mvc.FluentValidation library to automatically wire up all of my validators (and use dependency injection to create the validators). I created the ...
1
vote
1answer
65 views

Validation in ASP.NET MVC. FluentValidationModelProvider

Following the article http://www.thekip.nl/2011/09/22/using-fluentvalidation-for-both-domain-validation-and-validation-in-mvc-projects/ for me it's not still clear where does the validation appear in ...
1
vote
4answers
118 views

Application design: NH-session management, generic repository, ASP.NET MVC

Having defined a domain model I want to figure out how to do the rest of work. DATA ACCESS LAYER I had read before that it is not necessary to code own UnitOfWork implementation over ISession ...
1
vote
2answers
106 views

Mapping Domain Model Validation Errors to ViewModel when using FluentValidation

I'm hoping people here can give me some ideas on how to properly do this. Currently I have a ViewModel that I use to render my screen. The View model actually contains the flattened data of several ...
1
vote
1answer
118 views

FluentValidation pass parameter to WithMessage

I have the following code in validator: RuleFor(mb => mb.Amount). Must((mb, amount) => { var betLimit = _battlesService.GetBetLimit(mb.BattleId); ...
1
vote
2answers
135 views

Override default ASP.NET MVC message in FluentValidation

I get the validation message "The value xxx is not valid for yyy". It happens when I post incorrect value for double type. I have no idea how to change it.
1
vote
1answer
123 views

How do I use fluent validation to validate an object which contains more objects of the same type?

I have a class Action which has a collection of more Action objects. Something like this: public class Action { ICollection<Action> SubActions; } This basically forms a tree structure (I ...
1
vote
1answer
530 views

Fluent Validation and Collection Validation Issues in MVC 3

I'm hoping I'm missing something simple here. I've configured Fluent Validation for integration with MVC and it's been working quite well up until now. I'm now working on a scenario where a user is ...
1
vote
1answer
202 views

Fluent Validation, Domain and ViewModels

I've been developing a web application with asp.net mvc, nhibernate and ddd concepts. I've developed validations with Fluent Validation for my domain classes and it works fine. Well, now, I need a ...
1
vote
1answer
144 views

MVC3 Architecture/Validation Question

I think this is a pretty simple task, but I can't for the life of me get it working. Environment - MVC3, FluentValidation, StructureMap. I have a ViewModel (RegisterViewModel) that has the following ...
1
vote
1answer
305 views

jquery remote validation does not trigger in asp .net mvc 3

i have below form @using (Html.BeginForm("register", "users")) { <p> First Name </p> <div> @Html.TextBoxFor(x => x.FirstName) @Html.ValidationMessageFor(x => ...
1
vote
1answer
331 views

Nested Razor layouts causing client validation to fail

Here's my original create page (no nesting) - Client validation works @model TennisClub.ViewModels.ClubMember.EditorModel @{ ViewBag.Title = "New Club Member"; ViewBag.LegendTitle = "Club ...
1
vote
2answers
528 views

FluentValidation on number issue

I am using FluentValidation in my ASP.NET MVC 3 application. I have a MaxNumberTeamMembers property in my view model as such: /// <summary> /// Gets or sets the maximum number of team members. ...
1
vote
1answer
464 views

FluentValidation as a service

I'm using FluentValidation 2 for validating some entities. I'd like to create an IValidationService that I can pass into other services to allow them to perform validation. I'd like to expose it like ...
1
vote
1answer
319 views

User input validation and business object validation confusion

I'm trying to wrap my head around validating user input and validating a business object. Let's say I am working with a Customer object. It is has the following properties: CustomerId, FirstName and ...

1 2 3