Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
4answers
4k views

ASP.NET MVC, Linq to SQL Data Annotation Validation

I'm trying implement Data Annotation to my Linq to SQL objects. The .dbml file is generated and I'm not sure how to add data annotation to the objects without touching the generated source code. I ...
5
votes
6answers
812 views

Is Data Annotations really a good idea for validation?

As I'm learning more and more about ASP.NET MVC the more I am introduced to Data Annotations. Specifically in MVC they are used for validation and this gives me some concerns. The biggest is due to ...
4
votes
3answers
1k views

ASP.NET MVC Model/ViewModel Validation

I have model classes in Linq-to-Sql with partial classes marked with data annotation attributes and a reference to xVal. When I bind a view directly to a model everything works great, both the JS ...
3
votes
1answer
416 views

StringLengthAttribute and Localized text

The following code was grabbed from MSDN: http://msdn.microsoft.com/en-us/library/system.componentmodel.dataannotations.stringlengthattribute.aspx [MetadataType(typeof(ProductMetadata))] public ...
3
votes
3answers
1k views

MVC data annotation layer: where to put the set CurrentUICulture statement?

I am getting crazy with the localization of an MVC application. After a recent question of mine I have followed this approach: The language is stored in Session["lang"] Each controller inherits ...
2
votes
1answer
268 views

Combining DataAnnotations and IDataErrorInfo for WPF

I am writing a WPF application and I want to use Data Annotations to specify things like Required Fields, Range, etc. My ViewModel classes use the regular INotifyPropertyChanged interface and I can ...
2
votes
2answers
158 views

Is it possible in silverlight to change the Required Data Annotations dynamically

Suppose I have 3 fields on a Silverlight based xaml page Color, Size and SurpriseMe where none of the fields are required and SurpriseMe is a checkbox initially set to checked. I want to create ...
2
votes
1answer
2k views

Date formatting using data annotations for a dataform in Silverlight

This is probably got a simple answer to it, but I am having problems just formatting the date for a dataform field.. <df:DataForm x:Name="Form1" ItemsSource="{Binding Mode=OneWay}" ...
2
votes
1answer
4k views

ASP.NET MVC Data Annotations Validation ErrorMessageResourceType

When using Data Annotations Valition, everything works fine until I try to use resources. Here's the error I get: The name 'ErrorMessageResourceType' does not exist in the current context. And the ...
0
votes
0answers
14 views

Clientside Validation triggered by events from another field [closed]

I have two security question select lists. I have a validator on the second one that checks to see the same item is not selected as the first. If I do select the same item, the client validator is ...
0
votes
2answers
290 views

Data Annotation and Metadata Types and “Stitching Together Values” (C#)

I'm trying to setup data annotation validation for an object in my model and it has a special need. I have to essentially take some extra properties that I'm adding and combine them to get the value ...