本文整理汇总了C#中ActionType.GetActionTypeName方法的典型用法代码示例。如果您正苦于以下问题:C# ActionType.GetActionTypeName方法的具体用法?C# ActionType.GetActionTypeName怎么用?C# ActionType.GetActionTypeName使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ActionType
的用法示例。
在下文中一共展示了ActionType.GetActionTypeName方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: GetDescription
private static string GetDescription(KeyValuePair<Type, EntityType> current, ActionType type, object entity)
{
var builder = new StringBuilder();
var firstFormat = string.Format("Сущность \"{0}\"",current.Value.GetEntityTypeName());
const string idFormat = " с идентификатором \"{0}\"";
const string nameFormat = " с названием \"{0}\"";
var actionFormat = string.Format(" была {0}", type.GetActionTypeName());
if (entity != null)
{
var idProp = entity.GetType().GetProperties().FirstOrDefault(c => c.Name.ToUpper().Contains("ID"));
var nameProp = entity.GetType().GetProperties().FirstOrDefault(c => c.Name.ToUpper().Contains("NAME"));
builder.Append(firstFormat);
if (idProp != null)
{
builder.Append(string.Format(idFormat, idProp.GetValue(entity)));
}
if (nameProp != null)
{
builder.Append(string.Format(nameFormat, nameProp.GetValue(entity)));
}
builder.Append(actionFormat);
}
if (type == ActionType.Export || type == ActionType.Import)
{
builder.Append(type.GetActionTypeName());
}
return builder.ToString();
}
示例2: AppendDescriptionUsingContext
private static void AppendDescriptionUsingContext(DbContext context, StringBuilder builder, EntityType type, ActionType aType, object entity)
{
string additionalInfo = string.Empty;
string identity = string.Empty;
var enrty = context.Entry(entity);
var prop =
enrty.Entity.GetType()
.GetProperties()
.FirstOrDefault(c => c.GetCustomAttributes(typeof(KeyAttribute), true).FirstOrDefault() != null);
var name = enrty.Entity.GetType().GetProperties().FirstOrDefault(c => c.Name.Contains("Name"));
identity = CreateIdentityString(entity, prop, identity, name);
if (aType == ActionType.Updating)
{
additionalInfo = string.Format("Были изменены следующие поля: {0}",
string.Join(",", enrty.CurrentValues.PropertyNames));
}
if (aType != ActionType.Import || aType != ActionType.Export)
{
builder.Append(string.Format("Сущность \"{0}\" {1} была {2}.{3}", type.GetEntityTypeName(), identity,
aType.GetActionTypeName(), additionalInfo));
}
}
示例3: AppendDescription
private static void AppendDescription(DbContext context, StringBuilder builder, EntityType type, ActionType aType, object entity)
{
if (context != null && entity != null)
{
AppendDescriptionUsingContext(context, builder, type, aType, entity);
}
if (context == null && entity != null)
{
AppendDescriptionWithOutContext(builder, type, aType, entity);
}
if (aType == ActionType.Export || aType == ActionType.Import)
{
builder.Append(aType.GetActionTypeName());
}
}
示例4: AppendDescriptionWithOutContext
private static void AppendDescriptionWithOutContext(StringBuilder builder, EntityType type, ActionType aType, object entity)
{
string identity = string.Empty;
var nameProp = entity.GetType().GetProperties().FirstOrDefault(c => c.Name.ToUpper().Contains("NAME"));
var idProp = entity.GetType().GetProperties().FirstOrDefault(c => c.Name.ToUpper().Contains("ID"));
identity = CreateIdentityString(entity, idProp, identity, nameProp);
builder.Append(string.Format("Сущность \"{0}\" {1} была {2}", type.GetEntityTypeName(), identity,
aType.GetActionTypeName()));
}