Skip to content

Instantly share code, notes, and snippets.

@pawelgradecki
Created June 13, 2017 13:05
Embed
What would you like to do?
[EntityLogicalName("account")]
public class MyAccount : MyEntity
{
public MyAccount() : base("account") { }
[AttributeLogicalName("odx_clientcode")]
public string ClientCode
{
get => GetAttribute<string>();
set => SetAttribute(value);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment