Ejemplo n.º 1
0
        internal static ReaderToModel GetReaderToModel(Type t)
        {
            ReaderToModel ic          = null;
            Type          convertType = null;

            if (!cacheDic.TryGetValue(t, out convertType))
            {
                if (convertType == null)
                {
                    convertType = CreateReaderToModelType(t);
                    if (convertType != null && !cacheDic.ContainsKey(t))
                    {
                        cacheDic[t] = convertType;
                    }
                }
            }

            if (convertType != null)
            {
                ic = Activator.CreateInstance(convertType) as ReaderToModel;
            }

            //assbuilder.Save("Afx.Data.Extensions.Dynamic.dll");

            return(ic);
        }
Ejemplo n.º 2
0
        /// <summary>
        /// 查询数据
        /// </summary>
        /// <typeparam name="T"></typeparam>
        /// <param name="sql"></param>
        /// <param name="param">sql参数,model or dictionary string object or IEnumerable&lt;DbParameter&gt; or IEnumerable&lt;IDataParameter&gt; </param>
        /// <param name="commandType"></param>
        /// <returns></returns>
        public virtual List <T> Query <T>(string sql, object param = null, CommandType?commandType = null)
        {
            this.CheckSql(sql);
            var           t       = typeof(T);
            bool          isvalue = CheckModel(t);
            ReaderToModel ic      = null;

            if (!isvalue && (t == typeof(string) || t.IsPrimitive && t.IsValueType))
            {
                isvalue = true;
            }
            if (!isvalue && t.IsClass)
            {
                ic = ModelMaping.GetReaderToModel(t);
            }

            using (this.Open())
            {
                using (IDbCommand command = this.Connection.CreateCommand())
                {
                    command.Connection = this.Connection;
                    if (this.CommandTimeout.HasValue)
                    {
                        command.CommandTimeout = this.CommandTimeout.Value;
                    }
                    if (commandType.HasValue)
                    {
                        command.CommandType = commandType.Value;
                    }
                    if (this.transaction != null)
                    {
                        command.Transaction = this.transaction;
                    }
                    AddParam(command, sql, param);
                    WriteLog(command);
                    using (var reader = command.ExecuteReader())
                    {
                        var list = new List <T>();
                        while (reader.Read())
                        {
                            object o = default(T);
                            if (ic != null)
                            {
                                o = ic.To(reader);
                            }
                            else
                            {
                                var v = reader.GetValue(0);
                                o = ChangeType(v, t) ?? default(T);
                            }
                            list.Add((T)o);
                        }
                        return(list);
                    }
                }
            }
        }
Ejemplo n.º 3
0
        public static List <T> Query <T>(this IDatabase db, string sql, object parameters = null, CommandType?commandType = null)
        {
            db.Check(sql);
            var  t       = typeof(T);
            bool isvalue = CheckModel(t);
            var  list    = new List <T>();

            ReaderToModel ic = null;

            if (!isvalue && (t == typeof(string) || t.IsPrimitive && t.IsValueType))
            {
                isvalue = true;
            }
            if (!isvalue && t.IsClass)
            {
                ic = GetReaderToModel(t);
            }

            AddParam(db, sql, parameters, commandType);
            using (var reader = db.ExecuteReader())
            {
                while (reader.Read())
                {
                    object o = default(T);
                    if (ic != null)
                    {
                        o = ic.To(reader);
                    }
                    else
                    {
                        var v = reader.GetValue(0);
                        o = ChangeType(v, t) ?? default(T);
                    }
                    list.Add((T)o);
                }
            }
            return(list);
        }