Skip to content

Instantly share code, notes, and snippets.

@pawelgradecki
Last active June 13, 2017 12:59
Show Gist options
  • Save pawelgradecki/8cffa978b26ce76be6625b838421f93a to your computer and use it in GitHub Desktop.
Save pawelgradecki/8cffa978b26ce76be6625b838421f93a to your computer and use it in GitHub Desktop.
[EntityLogicalName("account")]
public class MyAccount : Entity
{
public MyAccount() : base("account") { }
public string odx_clientcode
{
get
{
return this.GetAttributeValue<string>("odx_clientcode");
}
set
{
this.SetAttributeValue("odx_clientcode", value);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment