I have a (likely common) case where I would like to reuse the same class to add a new object and edit an existing object in my silverlight application (SL4, WCF RIA, EF4, Linq-to-Entities). When adding a new one, I would like my custom validator to check for uniqueness and fail if it is not unique. However, when editing, I do not want the same validator to prevent editing. Is there a way to temporarily disable validation for one field (ideally by type of verification, so that other validators can still work in the same field)?
source share