当前位置: 首页>>代码示例>>C#>>正文


C# ActionType.GetActionTypeName方法代码示例

本文整理汇总了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();
        }
开发者ID:Shkorodenok,项目名称:Articles,代码行数:35,代码来源:TransactionHelper.cs

示例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));
            }
        }
开发者ID:Shkorodenok,项目名称:Articles,代码行数:26,代码来源:TransactionHelper.cs

示例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());
            }
        }
开发者ID:Shkorodenok,项目名称:Articles,代码行数:17,代码来源:TransactionHelper.cs

示例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()));
        }
开发者ID:Shkorodenok,项目名称:Articles,代码行数:12,代码来源:TransactionHelper.cs


注:本文中的ActionType.GetActionTypeName方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。