Yes, I did referesh the catalog and it did add the new columns to the entities. The entity contains all the events related to the newly added fields, bit it says that the definition for the EntityFieldIndex is not found. Here is the lines of code related to that field.
It would say that this fieldIndex definition is not found CombatDeterminationDecisionFieldIndex.UnempBenefitStartDate
public virtual System.DateTime UnempBenefitStartDate
{
get
{
object valueToReturn = base.GetCurrentFieldValue((int)CombatDeterminationDecisionFieldIndex.UnempBenefitStartDate);
if(valueToReturn == null)
{
valueToReturn = TypeDefaultValue.GetDefaultValue(typeof(System.DateTime));
}
return (System.DateTime)valueToReturn;
}
set
{
if(SetNewFieldValue((int)CombatDeterminationDecisionFieldIndex.UnempBenefitStartDate, value))
{
OnUnempBenefitStartDateChanged();
}
}
}
Thanks,
Madhavi.