I'm developing a Silverlight application with Entity Framework and RIA Services. When I create the RIA Service I have the option to generate a metadata class for basic validation.
What is the difference between the validation I can do directly with EF and the one in the metadata class generated with RIA service? I mean, if I have a property in the EF model which is not null, I don't need to mark it in the metadata class as [Required]... Is it because this is already done by the EF model??
THANKS!