public static Customer Create(EntityManager manager,
string companyName) {
Customer aCustomer = manager.CreateEntity<Customer>();
aCustomer.CustomerID=System.Guid.NewGuid();
aCustomer.CompanyName = null; // triggers verification exception - required value
string pad = "01234567890123456789012345678901234567890123456789";
aCustomer.CompanyName = companyName + pad; // if get here, will also trigger a verification exception - string length
aCustomer.CompanyName = companyName;
aCustomer.EntityAspect.AddToManager();
return aCustomer;
}
The preceding functions as u said triggers the respective verifiers and raise a "IdeaBlade.Validation.VerifierResultException" exception due to which the remaining code does not get executed.
In my case I want whole code to get executed and there should be particular function where I can check for each and every column of the row for the VerifierResult using the Execute function to check for the errors, so that I can store them in particular string and display them in my datagrid row