Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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 ...
4
votes
1answer
316 views

Using the DefaultValueAttribute on a class that is used as the type in a MetadataTypeAttribute

I've been using the MetadataType attribute to add validation attributes to classes I'm generating using a T4 template. This works wonderfully, but I'd like to be able to use the DefaultValue attribute ...
4
votes
2answers
2k views

.NET 4 RTM MetadataType attribute ignored when using Validator

I am using VS 2010 RTM and trying to perform some basic validation on a simple type using MetadataTypeAttribute. When I put the validation attribute on the main class, everything works. However, when ...
3
votes
2answers
828 views

Multiple MetadataType validation rule sets using DataAnnotations with ASP.Net MVC

I am using DataAnnotations and MetadataType in ASP.Net MVC to validate the creation of one of my custom objects through a form on our www site. It's working really well. But now we also need to be ...
2
votes
0answers
340 views

Using Silvlight, custom EF POCO, custom Validation - leveraging Metadata and its not working in Silverlight 4

I am using metadata validation for both my MVC and SIlverlight together. However, the classes for silverlight arent working, and I think its due to the MetadataTypeAttribute that doesn't exist for ...
2
votes
1answer
213 views

Is there a way to instruct ASP.NET MVC about some class metadata other than putting the MetadataTypeAttribute directly on the class?

Here's a sample of how it works now: [MetadataType(typeof(PersonMetadata))] public class Person { public string Name { get; set; } public int Age { get; set; } } public class PersonMetadata ...
2
votes
2answers
580 views

Metadatatypes with self-validation using validation application block

Is it possible to use the selfvalidation attribute with my validations located in a metadatatype? I'm using Enterprise Library 5's Validation Application Block.
1
vote
1answer
77 views

DataAnnotations MetadataType not working

I'm not being able to attach a MetadataType to a auto generated class in our application. I tested setting the Order attribute in the generated class and it works fine, but if try to use another class ...
0
votes
1answer
12 views

Datatype finding in C#

I have 10 data's in string array.In this 10 data, each of the data's could be integer/string/double/DateTime format. based on these 10 datatype we have to find common datatype. Eg1: ...
0
votes
1answer
129 views

MVC3 - POST/Submit/Save a Model with custom DataType

I have created a custom DataType("Days") and have been able to create a partial view "Days.cshtml" which renders a select list just fine. I am able to populate the select list from the form just ...
0
votes
0answers
103 views

Why does DisplayNameAttribute not work with MetadataTypeAttribute in ASP.NET MVC?

An example of adding a validation class to generated classes taken from here with [DisplayName] added is as follows: using System.ComponentModel.DataAnnotations; namespace MvcDA { ...
0
votes
1answer
102 views

Attributes of properties in MetadataType are ignored by EntLib Validation

It's an EntLib-Validator-issue again. I'm playing with EntLib 5.0 in C# and .Net 4.0 on XP pro. I have some business objects (partial classes) generated by T4 templates. So I decided to put their ...
0
votes
0answers
199 views

MetadataType, using Buddy Classes to change property type

I'm attempting to use Buddy classes in an ASP.NET 4 website, an assumption I made when I saw buddy classes was that I would be able to change the type of a public property for use with Enums. The ...
0
votes
1answer
107 views

How to map data from other languages to java

We have to store data from some flat files that is created using IBM's Ab-Initio product. They have their own datatypes that I need to map to java data-types while I process that data in java. Does ...