In the Database context, when accessing properties before calling SaveChanges, how do I get the Displayname rather than simply the name (the below code)?
string changes = "";
foreach (var item in ctx.Entry(entity).Properties)
{
if (item.IsModified)
{
changes += "["+item.Metadata.Name+"]";
}
}