Question: You want to implement custom business logic that should run when the InvoiceNumber property is modified. What actions should you take? (Choose all that apply.)
A
B
C
D
Add a CustomValidator control to the DynamicData/FieldTemplates/Integer_Edit.asax file. Set this control to process custom logic to validate an invoice number.
B
Extend the OnInvoiceNumberChanged partial method inside the Invoice partial class to include additional validation logic.
C
Extend the OnInvoiceNumberChanging partial method inside the Invoice partial class to include additional validation logic.
D
If the logic fails, throw a ValidationException instance.
Note: Not available