Are you referring to the output generated for the individual fields? These prefixes are are generated as part of the schema at the time the fields are created and as such are not able to be changed short of removing the field and recreating. All custom fields
get a prefix.
Changing the custom entity prefix in Microsoft Dynamics CRM 2011
[Microsoft.Xrm.Sdk.AttributeLogicalNameAttribute("new_test")]
public System.Nullable<bool> new_test
{
get
{
return this.GetAttributeValue<System.Nullable<bool>>("new_test");
}
set
{
this.OnPropertyChanging("new_test");
this.SetAttributeValue("new_test", value);
this.OnPropertyChanged("new_test");
}
}
Jason Lattimer