Skip to content

Instantly share code, notes, and snippets.

@msiddiqi
Created March 29, 2012 11:42
Show Gist options
  • Save msiddiqi/2236337 to your computer and use it in GitHub Desktop.
Save msiddiqi/2236337 to your computer and use it in GitHub Desktop.
namespace EFCodeFirstValidation.Entities.Validation.AssociateMetadata
{
using System.Text;
using System.ComponentModel.DataAnnotations;
class DepartmentAssociatedMetadata
{
[RegularExpression("^Department of")]
public virtual string DepartmentName { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment