I am trying to add a custom field to my SubClassed BO. But I am not sure how to reference the BO in the following statement (GetType) so that it would be generic?Protected Overrides Function GetCustomBindablePropertyDescriptors() As MicroFour.StrataFrame.Business.FieldPropertyDescriptor()
Return New MicroFour.StrataFrame.Business.FieldPropertyDescriptor() { _
New MicroFour.StrataFrame.Business.ReflectionPropertyDescriptor("Cowboy_Name", GetType(BBPointsBO))}
End Function
TIA.