Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
951 views

DataAnnotation attributes buddy class strangeness - ASP.NET MVC

Given this POCO class that was automatically generated by an EntityFramework T4 template (has not and can not be manually edited in any way): public partial class Customer { [Required] ...
2
votes
3answers
2k views

Validation does not work when I use Validator.TryValidateObject

DataAnnotations does not work with buddy class. The following code always validate true. Why ? var isValid = Validator.TryValidateObject(new Customer(), Context, results, true); and here is the ...
2
votes
0answers
194 views

Getting buddy class information?

I'm trying to read buddy class metadata information for usage outside of the normal asp.net mvc 2 validation process. I thought it would be as simple as saying: DataAnnotationsModelMetadataProvider ...
1
vote
1answer
290 views

MVC3 Buddy Classes, ViewModels and Validation

I'm currently working on my first MVC project which is nothing more than a glorified blog for my own learning purposes. I started out with a database-first approach as I had no idea code-first even ...
1
vote
1answer
266 views

How can I auto-generate DataValidation “Buddy” classes from my database in ASP.NET MVC3?

I have a website that has the views generated directly from objects created by Entity Framework. After reading this blog by Scott GU it seems the best way to get DataValidation to work is to have ...
1
vote
2answers
273 views

Do Buddy Classes only work for DataAnnotations?

Do buddy classes only work for dataannotations, or for any attribute? I've been trying to attach a ColumnAttribute to a field in my buddy class, but it appears that it doesn't get processed in the ...
0
votes
0answers
194 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
2answers
450 views

Add LINQ Auto-Generated Value Marker [Column(IsDbGenerated=true)] in Buddy Class

is it possible to decorate a field of a LINQ generated class with [Column(IsDbGenerated=true)] using a buddy class (which is linked to the LINQ class via [MetadataType(typeof(BuddyMetadata))]) ? My ...