I am trying to find out why after loading the update from 1.6.5 to 1.7.0 when trying to rebuild a BO project I am getting the error: microfour.strataframe.business.fieldpropertydescriptor 'does not contain a constructor that takes '1' arguments on all references in code like:
private class Field_CONTTERM_PKCODEID_Descriptor : MicroFour.StrataFrame.Business.FieldPropertyDescriptor
{
public Field_CONTTERM_PKCODEID_Descriptor() : base("CONTTERM_PKCODEID") { }
private System.Type _PropertyType = typeof(System.Decimal);
public override object GetValue(Object component)
{
return ((tbl_ContractTerm_1)component).CONTTERM_PKCODEID;
}
I have verified the dlls are 1.7.0 that are references. The project builds without erros in 1.6.5 but about 1300 erros under 1.7.0. Could it be that I need to regenerate the BOs under the new 1.7.0?