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 | |
{ | |
public MyEntity(string entityName) : base(entityName) { } | |
protected string GetAttributeName(string propertyName) | |
{ | |
return "odx_" + propertyName.ToLowerInvariant(); | |
} | |
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); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment