Thanks for the reply - this is exactly what I needed. However, your suggestion doesn't seem to work for me. It would probably help considerably if I knew what code samples you were talking about. When I look in my 'C:\Program Files\IdeaBlade DevForce\Learning Resources\060_Validation' directory, all I see are three files:
- Ch080_Validation Through Verification.pdf
- Slides_Verification.pdf
- Slides_Verification.ppt
Should I be seeing something else? Are you talking about a different place for code samples, like the website? (Can't seem to find anything there either.)
At any rate, there seems to be an issue with the code you wrote above. When I try to do what you did, I get a compiler error, because the verifier attributes can only be applied to properties and they are being applied to fields in your example. Should they be properties? If so, I tried automatic properties, and that didn't seem to work. Not sure what I'm doing wrong. Seem to be getting thwarted at every turn.
Thanks for the help,
Terry
P.S. Here's the code I'm using, if it helps at all:
using
System;
using
System.Collections.Generic;
using
System.Linq;
using
System.Text;
using
System.ComponentModel;
using
System.ComponentModel.DataAnnotations;
using
IdeaBlade.EntityModel;
using
IdeaBlade.Validation;
using
ProModel.Extensions;
namespace
ProModel.Eps.ObjectModel.DevForce
{
[
MetadataType(typeof(UserAccountMetadata))]
public partial class UserAccount
{
...
}
public static class UserAccountMetadata
{
[
RequiredValueVerifier()]
public static string EmailAddress { get; set; }
}
}