This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class MyEntity : Entity | |
{ | |
protected string GetAttributeName(string propertyName) | |
{ | |
return this.GetType().GetProperties().FirstOrDefault(p => p.Name == propertyName).GetCustomAttribute<AttributeLogicalNameAttribute>().LogicalName; | |
} | |
protected T GetAttribute<T>([CallerMemberName]string propertyName = null) | |
{ | |
return this.GetAttributeValue<T>(GetAttributeName(propertyName)); | |
} | |
protected void SetAttribute(object value, [CallerMemberName]string propertyName = null) | |
{ | |
this.SetAttributeValue(GetAttributeName(propertyName), value); | |
} | |
} | |
[EntityLogicalName("account")] | |
public class MyAccount : MyEntity | |
{ | |
public MyAccount() | |
{ | |
this.LogicalName = typeof(MyAccount).GetCustomAttribute<EntityLogicalNameAttribute>().LogicalName; | |
} | |
[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