• C# 自定义特性


    Id字段上的DbKey就是自定义特性

    /// <summary>
    /// 用户信息
    /// </summary>
    public class User
    {
        [DbKey]
        public string Id { get; set; }
        public string Name { get; set; }
    }

    继承Attribute,实现自定义特性DbKey

    namespace CustomerAttribute
    {
        /// <summary>
        /// 数据库主键
        /// </summary>
        public class DbKey : Attribute
        {
            public string Description { get; set; }
    
            public DbKey()
            {
    
            }
    
            public DbKey(string description)
            {
                this.Description = description;
            }
        }
    }
    namespace CustomerAttribute
    {
        /// <summary>
        /// 用户信息
        /// </summary>
        public class User
        {
            [DbKey]
            public string Id { get; set; }
            public string Name { get; set; }
        }
    
        /// <summary>
        /// 用户角色
        /// </summary>
        public class UserRole
        {
            [DbKey("用户ID")]
            public string UserId { get; set; }
            [DbKey("角色ID")]
            public string RoleId { get; set; }
        }
    }
    namespace CustomerAttribute
    {
        class Program
        {
            /// <summary>
            /// 获取数据库主键字段
            /// </summary>
            /// <typeparam name="T"></typeparam>
            /// <returns></returns>
            private static IEnumerable<PropertyInfo> getDbKeyFields<T>()
            {
                // 获取当前类中的公共字段
                var fields = typeof(T).GetProperties();
    
                // 查找有DbKey特性的字段
                var keyFields = fields.Where(field => (DbKey)Attribute.GetCustomAttribute(field, typeof(DbKey)) != null);
    
                return keyFields;
            }
    
            private static string getDescription(PropertyInfo field)
            {
                string result = string.Empty;
                var dbKey = (DbKey)Attribute.GetCustomAttribute(field, typeof(DbKey));
                if (dbKey != null) result = dbKey.Description;
                return result;
            }
    
            static void Main(string[] args)
            {
                try
                {
                    var userKeyFields = getDbKeyFields<User>();
                    Console.WriteLine("User表的主键为:" + string.Join(",", userKeyFields.Select(field => field.Name)));
    
                    var userRoleKeyFields = getDbKeyFields<UserRole>();
                    Console.WriteLine("UserRole表的主键为:" + string.Join(",", userRoleKeyFields.Select(field => field.Name)));
    
                    foreach (PropertyInfo field in userRoleKeyFields)
                    {
                        string description = getDescription(field);
                        Console.WriteLine(string.Format("{0}字段的描述信息为:{1}", field.Name, description));
                    }
                }
                catch (Exception ex)
                {
                    Console.WriteLine(ex);
                }
                finally
                {
                    Console.ReadLine();
                }
            }
        }
    }
    View Code

    一些Orm的实现,就是通过解析特性信息,动态生成数据库表

  • 相关阅读:
    Premetheus告警QQ邮箱
    Prometheus+grafana监控SpringBoot2应用
    Grafana整合Prometheus
    Prometheus:入门初体验
    接口幂等性思路
    OpenFeign远程调用丢失请求头问题解决办法
    gradle构建脚本
    windows安装gradle
    CompletableFuture异步编排
    线程池(ThreadPoolExcutor)基本介绍
  • 原文地址:https://www.cnblogs.com/jh007/p/6124179.html
Copyright © 2020-2023  润新知