The data-annotations tag has no wiki summary.
5
votes
6answers
846 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 ...
3
votes
1answer
252 views
@Immutable and insertable=false, updateable false
If I use @Immutable annotation on an entity and add updatable/insertable attributes on any column annotation, will that be redundant?
@Entity
@Immutable
public class SomeEntity...
{
@Column(name = ...
2
votes
0answers
72 views
Entlib5 Validation [IgnoreNull] throws exception while adding objects to list
I have a class Partner and I use entlib5 validation block to validate class's fields (using data anottations).
In one of method I read db table and create binding list of Partner's objects, but if ...
2
votes
0answers
117 views
RIA Services library and resource strings in meta attributes
I've split out my domain services into a separate WCF RIA Services Class Library project. However there now seems to be a problem with using the resource strings in the client side library.
e.g.
The ...
1
vote
1answer
23 views
ASP.NET MVC 3: DisplayFormat Data Annotation for TimeSpan causing FormatException
In my model, the field Length is a TimeSpan with the following Data Annotation:
[DisplayFormat(ApplyFormatInEditMode = true, DataFormatString = "{h\\:mm}")]
which I used per the suggestion here. I ...
1
vote
1answer
83 views
Custom validator on list field doesn't seem to work at all
Model:
using System.ComponentModel.DataAnnotations;
using MySite.Validators;
namespace MySite.Models
{
public class AddItem
{
[Required(ErrorMessage = "Name is required")]
...
1
vote
0answers
107 views
Link Tables - Code First - Entity Framework - Table-Mapping
I asked a related question previously on this forum. This question outlines the steps I have taken, different things I have tried and errors I have encountered. It might help someone.
Considering a ...
1
vote
1answer
88 views
Custom Validation Not Executing
I have a View Model class in a WPF application that has some very complex validation. I have implemented the IValidatableObject interface to provide the custom validation logic. The problem is that my ...
1
vote
1answer
189 views
Silverlight 4 Textbox validation only after change
Im developing a solution in Silverlight 4 with RIA Services. I am using data annotations on my entity to describe validation. I can see these are reflected on the client side code after building. I ...
1
vote
1answer
683 views
How do I populate the Watermark property on ModelMetaData?
I've just finished reading http://bradwilson.typepad.com/blog/2009/10/aspnet-mvc-2-templates-part-2-modelmetadata.html In the article Brad lists the Watermark property but there is no mention of which ...
0
votes
1answer
38 views
EF CodeFirst: Rails-style created and modified columns
Using Entity Framework CodeFirst, how do I create a created datetime column that gets populated with the current timestamp everytime a record is inserted for that table, and a modified datetime column ...
0
votes
0answers
46 views
Require bool checkbox to be true (client-side AND server-side) with data annotations
I am trying to figure out a way to require a checkboxfor to be TRUE (for an "accept user agreement" style form). I want to do this via some type of data annotation (property decorator) so that the ...
0
votes
0answers
44 views
Link Tables - Code First - Entity Framework
Having spent considerable time and read many posts relating to 1-1 relationships, data annotations and fluent api etc. I am still finding it difficult to determine how to describe a mapping to an ...
0
votes
1answer
125 views
No data-val* attributes with Partial Views
I have a view with Html.BeginForm() that calls a partial view(mentioned below and has no Form) passing in the main viewmodel. The Model has Data Annotation.
On initial load of the page validation ...
0
votes
1answer
79 views
Error while creating partial classes with LLBLGenPro
I simply am trying to declare partial classes for the tool-generated LLBLGenPro (partial) classes, so that I can use DataAnnotation for validation purposes. However, things don't seem to work here.
...