Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

22
votes
6answers
4k views

Asp MVC - “The Id field is required” validation message on Create; Id not set to [Required]

This is happening when I try to create the entity using a Create style action in Asp.Net MVC 2. The POCO has the following properties: public int Id {get;set;} [Required] public string Message ...
19
votes
4answers
5k views

ASP.NET MVC: Is Data Annotation Validation Enough?

I'm using the Data Annotation validation extensively in ASP.NET MVC 2. This new feature has been a huge time saver, as I'm now able to define both client-side validation and server-side validation in ...
19
votes
6answers
2k views

ASP.NET MVC ValidateInput(false) stops working with xVal and [RegularExpression] DataAnnotation

I would like to intercept the "<" character in the form field by a regex validator. I will describe the problem in 3 steps: Step 1: When I try to submit a form with a field containing the "<" ...
18
votes
8answers
8k views

Validate data using DataAnnotations with WPF & Entity Framework?

Hello is thee any way to validate using Data Using DataAnnotations in WPF & Entity Framework?
16
votes
6answers
381 views

IIS doesn't recognise view model annotations

I have a basic MVC view model with annotations, for example: [Required(ErrorMessage="Your Name Required")] [Display(Name = "Your Name")] [DataType(DataType.Text)] [MaxLength(120, ...
16
votes
5answers
6k views

ASP.Net MVC 3 Disable Required validation attribute under certain circumstances

I was wondering if it is possible to disable the Required validation attribute in certain controller actions. I am wondering this because on one of my edit forms I do not require the user to enter ...
14
votes
3answers
3k views

Unit Testing ASP.NET DataAnnotations validation

I am using DataAnnotations for my model validation i.e. [Required(ErrorMessage="Please enter a name")] public string Name { get; set; } In my controller I am checking the value of ...
13
votes
3answers
6k views

Asp.Net MVC EnableClientValidation doesn't work

I want as well as Client Side Validation as Server Side Validation. I realized this as the following: Model: ( The model has a DataModel(dbml) which contains the Test class ) namespace ...
13
votes
3answers
5k views

Is the DataTypeAttribute validation working in MVC2?

As far as I know the System.ComponentModel.DataAnnotations.DataTypeAttribute not works in model validation in MVC v1. For example, public class Model { [DataType("EmailAddress")] public string ...
13
votes
4answers
9k views

Custom model validation of dependent properties using Data Annotations

Since now I've used the excellent FluentValidation library to validate my model classes. In web applications I use it in conjunction with the jquery.validate plugin to perform client side validation ...
13
votes
6answers
6k views

How to handle Booleans/CheckBoxes in ASP.NET MVC 2 with DataAnnotations?

I've got a view model like this: public class SignUpViewModel { [Required(ErrorMessage = "Bitte lesen und akzeptieren Sie die AGB.")] [DisplayName("Ich habe die AGB gelesen und akzeptiere ...
11
votes
3answers
1k views

Default resource for data annotations in ASP.NET MVC

There's a way to set the default resource to the data annotations validations? I don't wanna make something like this: [Required(ErrorMessage="Name required.", ...
10
votes
1answer
344 views

Custom DataAnnotations with RIA Services

This is a word of warning more than a question, if you are using RIAServices with Custom ValidatorAttributes. Here is the Senario, I was creating a custom DataAnnotation that would validate a ...
10
votes
4answers
1k views

Which validation library for ASP.NET MVC?

I'm trying to decide what validation approach to take for a new ASP.NET MVC project. (And wow there are plenty of options!) The project uses NHibernate, so the first thing I considered was the ...
9
votes
2answers
157 views

DataAnnotations: Recursively validating an entire object graph

I have an object graph sprinkled with DataAnnotation attributes, where some properties of objects are classes which themselves have validation attributes, and so on. In the following scenario: ...
9
votes
2answers
764 views

Knockout JS + Sending to MVC 3

I've got the following code, but once it's submitted to the server I'm getting strings of "undefined" instead of null or empty. This is causing issues as I can't perform validation. Any ideas how to ...
9
votes
8answers
5k views

EF Code First: How do I specify that a property should generate a TEXT column rather than an nvarchar(4000)

I'm working with the Code First feature of Entity Framework and I'm trying to figure out how I can specify the column data types that should be created when the database is auto-generated. I have a ...
9
votes
4answers
433 views

MVC Model require true

Is there a way through data annotations to require that a boolean property be set to true? public class MyAwesomeObj{ public bool ThisMustBeTrue{get;set;} }
9
votes
2answers
2k views

Server-side validation of a REQUIRED String Property in MVC2 Entity Framework 4 does not work

I'm trying to get server-side validation of an Entity Framework String Property to work. Other server-side validation such as data type validation and required dateTime and numeric EF properties are ...
9
votes
1answer
996 views

How can I tell the Data Annotations validator to also validate complex child properties?

Can I automatically validate complex child objects when validating a parent object and include the results in the populated ICollection<ValidationResult>? If I run the following code: using ...
9
votes
3answers
3k views

Validating DataAnnotations with Validator class

I'm trying to validate a class decorated with dataannotation with the Validator class. It works fine when the attributes are applied to the same class. But when I try to use a metadata class it ...
8
votes
2answers
4k views

ASP.NET-MVC 2 DataAnnotations StringLength

Can I use the MVC 2 DataAnnotations to specify a minimum length for a string field? Has anyone done this or have they created custom attributes and if so do you mind sharing the source?
8
votes
2answers
2k views

Providing localized error messages for non-attributed model validation in ASP.Net MVC 2?

I'm using the DataAnnotations attributes along with ASP.Net MVC 2 to provide model validation for my ViewModels: public class ExamplePersonViewModel { [Required(ErrorMessageResourceName = ...
7
votes
2answers
511 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
2answers
1k views

Entity Framework - Default value for property using Data Annotations

I have a model like this public class MyModel { public int MyModelId { get; set; } public string Name { get; set; } public string Description { get; set; } public string Title { get; ...
7
votes
2answers
2k views

Foreign keys in entity framework 4.1

I am working on Entity Framework 4.1 and using data annotations for foreign keys. I want to know how can we define one to many relationship between product and categories. I want to map category. ...
7
votes
1answer
672 views

localize default model validation in mvc 2

[Required] [DisplayName("my date")] public DateTime? DateReg { get; set; } so if the user is going to pass in an invalid datetime value he will get this message "The value '02.07.201022' is not ...
7
votes
7answers
477 views

.net Regular Expression to match any kind of letter from any language

Which regular expression can I use to match (allow) any kind of letter from any language I need to match any letter including any diacritics (e.g. á, ü, ñ, etc.) and exlude any kind of symbol (math ...
7
votes
2answers
1k views

Where are the Entity Framework t4 templates for Data Annotations?

I have been googling this non stop for 2 days now and can't find a single complete, ready to use, fully implemented t4 template that generates DataAnnotations. Do they even exist? I generate POCOs ...
7
votes
3answers
1k views

When using Data Annotations with MVC, Pro and Cons of using an interface vs. a MetadataType

If you read this article on Validation with the Data Annotation Validators, it shows that you can use the MetadataType attribute to add validation attributes to properties on partial classes. You use ...
7
votes
3answers
2k views

MVC data annotation to compare one property to another?

I've been playing around data annotations in MVC2 and am curious if there is an annotation to compare 2 properties (ie. password, confirm password)?
7
votes
1answer
3k views

How to use DataAnnotations ErrorMessageResourceName with custom Resource Solution

I'm building a MVC web application with C#. Since the site will be multilingual, I've implemented my own ResourceManager. This class is responsible for fetching the required resource strings from a ...
7
votes
2answers
10k views

ASP.Net MVC DisplayFormat

In my model I have the following DataAnnotations on one of my properties [Required(ErrorMessage = "*")] [DisplayFormat(DataFormatString = "{0:d}")] [DataType(DataType.Date)] public DateTime Birthdate ...
7
votes
4answers
2k views

Validate object based on external factors (ie. data store uniqueness)

Description My solution has these projects: DAL = Modified Entity Framework DTO = Data Transfer objects that are able to validate themselves BL = Business Layer Services WEB = presentation Asp.net ...
7
votes
4answers
2k views

Is there a good reference for data annotations in regards to how DataType works?

I have a customer class which has both PhoneNumber and Email properties. Using DataAnnotations I can decorate the properties with DataType validation attributes, but I cannot see what that is ...
7
votes
3answers
916 views

Adding DataAnnontations to Generated Partial Classes

I have a Subsonic3 Active Record generated partial User class which I've extended on with some methods in a separate partial class. I would like to know if it is possible to add Data Annotations to ...
6
votes
1answer
136 views

Custom ValidationAttribute not firing IsValid function call in view model

I have created my own custom ValidationAttribute: public class UrlValidationAttribute : ValidationAttribute { public UrlValidationAttribute() {} public override bool IsValid(object value) ...
6
votes
2answers
235 views

What is the best way to apply default date formatting to all such fields in an ASP.NET MVC 3 app?

My goals are: Display all dates in d MMM yyyy format Default/existing values on first page load Anything entered by the user, then round-tripped via the server Add class="behaviour-date-picker" to ...
6
votes
3answers
377 views

How can I ignore case in a RegularExpression?

I have an asp.net MVC application. There is an entity called File that it has a property called Name. using System.ComponentModel.DataAnnotations; public class File { ... ...
6
votes
1answer
1k views

How does DataAnnotations really work in MVC?

This is more of a theoretical question. I'm currently examining the MVC 3 validation by using ComponentModel.DataAnnotations, and everything works automagically, especially on client side. Somehow ...
6
votes
3answers
1k views

EF4 code-first vs model-first with regards to model validation

I'm working on a one-man ASP.NET MVC 3 project (I have complete control over database schema and code), and I'm trying to decide between going database-first and POCO w/ my EF4 models, or if I should ...
6
votes
4answers
2k views

WPF Binding : Use DataAnnotations for ValidationRules

I have read a lot of Blog post on WPF Validation and on DataAnnotations. I was wondering if there is a clean way to use DataAnnotations as ValidationRules for my entity. So instead of having this ...
6
votes
2answers
3k views

ModelState.IsValid vs IValidateableObject in MVC3

so according to Gu IValidatableObject.Validate() should get called when a controller validates it's model (i.e. before ModelState.IsValid) however simply making the model implement IValidatableObject ...
6
votes
1answer
1k views

Best Practices - Data Annotations vs OnChanging in Entity Framework 4

I was wondering what the general recommendation is for Entity Framework in terms of data validation. I am relatively new to EF, but it appears there are two main approaches to data validation. The ...
6
votes
3answers
965 views

ASP.NET MVC 2 Data annotations in a dynamically generated model

I am creating an asp.net mvc 2 application generating my view model dynamically depending on user input. Simply put, the user is able to choose which fields he wants to see in his View. Since the ...
6
votes
1answer
2k views

How would I validate string length using DataAnnotations in asp.net mvc?

I am using DataAnnotations in an ASP.NET MVC 1 application to check for Required fields and numerical ranges using the Required and Range attributes. I am looking for the best way to validate the ...
6
votes
1answer
4k views

Custom validation with Data annotations

I'm using dataannotations to check data thats being entered, but I'm stuck when it comes to more custom way to validate data. I need to run queries against database to see if stuff exists there or ...
6
votes
3answers
778 views

MVC: Override default ValidationMessage

In the world of MVC I have this view model... public class MyViewModel{ [Required] public string FirstName{ get; set; } } ...and this sort of thing in my view... <%= ...
5
votes
1answer
804 views

Compare (password) attribute

I'd like to create a view model for a new user using the code below. The "User" class contains just the two properties (simplified for now) that I will persist to the database; the view model adds a ...
5
votes
1answer
603 views

Where is the whole list of default error messages for DataAnnotations at MVC 3

Yet another MVC localization question... I'm trying to localize an ASP.Net MVC 3 app using localized Resource files to display texts in the views, as recommended. The problem is, as usual, when ...

1 2 3 4 5 16