Пример #1
0
        public static Boolean AddParameter(SqlCommand parCMD, object obj, string parPropertyName)
        {
            Boolean blnResult = false;
            //TTAttributs MyAttributs = (TTAttributs)obj.GetType().GetProperty(parPropertyName).GetCustomAttribute(typeof(TTAttributs), false);
            TTAttributs MyAttributs = HelperMethod.GetTTAttributes(obj, parPropertyName);
            object      objValue    = HelperMethod.GetPropValue(obj, parPropertyName);

            if (MyAttributs.ParamaterDataType == SqlDbType.NVarChar)
            {
                int parFieldWidth = 50;
                if (MyAttributs.isMemoField == false)
                {
                    parFieldWidth = ((MaxLengthAttribute)(obj.GetType().GetProperty(parPropertyName).GetCustomAttributes(typeof(MaxLengthAttribute), true)[0])).Length;
                    parCMD.Parameters.Add("@" + MyAttributs.FieldName, MyAttributs.ParamaterDataType, parFieldWidth).Value = objValue == null ? string.Empty : objValue;
                }
                else
                {
                    parFieldWidth = objValue == null ? 0 : objValue.ToString().Length;
                    parCMD.Parameters.Add("@" + MyAttributs.FieldName, MyAttributs.ParamaterDataType, parFieldWidth).Value = objValue == null ? string.Empty : objValue;
                }
            }
            else
            {
                parCMD.Parameters.Add("@" + MyAttributs.FieldName, MyAttributs.ParamaterDataType).Value = objValue;
            }
            return(blnResult);
        }
Пример #2
0
        public static Boolean AddParameter(SqlCommand parCMD, TTDictionary lstParamters, object objEntity)
        {
            Boolean blnResult = false;

            //TTAttributs MyAttributs = (TTAttributs)obj.GetType().GetProperty(parPropertyName).GetCustomAttribute(typeof(TTAttributs), false);

            for (int i = 0; i < lstParamters.Count(); i++)
            {
                var         el          = lstParamters.ElementAt(i);
                TTAttributs MyAttributs = HelperMethod.GetTTAttributes(objEntity, el.Key);
                object      objValue    = el.Value.Value1;
                if (MyAttributs.ParamaterDataType == SqlDbType.NVarChar)
                {
                    int parFieldWidth = ((MaxLengthAttribute)(objEntity.GetType().GetProperty(el.Key).GetCustomAttributes(typeof(MaxLengthAttribute), true)[0])).Length;
                    if (MyAttributs.isMemoField == false)
                    {
                        parCMD.Parameters.Add("@" + MyAttributs.FieldName, MyAttributs.ParamaterDataType, parFieldWidth).Value = objValue == null ? string.Empty : objValue;
                    }
                    else
                    {
                        parFieldWidth = objEntity.ToString().Length;
                        parCMD.Parameters.Add("@" + MyAttributs.FieldName, MyAttributs.ParamaterDataType, parFieldWidth).Value = objValue == null ? string.Empty : objValue;
                    }
                }
                else
                {
                    parCMD.Parameters.Add("@" + MyAttributs.FieldName, MyAttributs.ParamaterDataType).Value = objValue;
                }
            }
            return(blnResult);
        }
Пример #3
0
        public static List <TEntity> CopyDataReaderToEntity <TEntity>(IDataReader dataReader) where TEntity : class
        {
            List <TEntity> entities = new List <TEntity>();

            try
            {
                PropertyInfo[] properties = typeof(TEntity).GetProperties();
                while (dataReader.Read())
                {
                    TEntity tempEntity = Activator.CreateInstance <TEntity>();
                    foreach (PropertyInfo property in properties)
                    {
                        try
                        {
                            TTAttributs MyAttributs = HelperMethod.GetTTAttributes(tempEntity, property.Name);
                            if (MyAttributs.isSelectField)
                            {
                                SetValue <TEntity>(property, tempEntity, dataReader[property.Name]);
                            }
                        }
                        catch { }
                    }
                    entities.Add(tempEntity);
                }
            }catch (Exception ex)
            {
                string str = ex.Message;
            }
            return(entities);
        }
Пример #4
0
        private object FillEntityFromReader(SqlDataReader dr, object objEntity)
        {
            object objResult = null;

            try
            {
                if (dr.HasRows)
                {
                    while (dr.Read())
                    {
                        foreach (var prop in objEntity.GetType().GetProperties())
                        {
                            TTAttributs attr = HelperMethod.GetTTAttributes(objEntity, prop.Name);
                            if (attr.isTableField)
                            {
                                int    ordinal  = dr.GetOrdinal(attr.FieldName);
                                object objValue = dr.GetValue(ordinal);
                                if (objValue != System.DBNull.Value)
                                {
                                    prop.SetValue(objEntity, objValue, null);
                                }
                            }
                        }
                    }
                    objResult = objEntity;
                }
            }
            catch (Exception)
            {
                throw;
            }
            return(objResult);
        }
Пример #5
0
 private static bool ParOperationValidation(TTAttributs parAttributs, bool parInsert)
 {
     if (parInsert)
     {
         return(parAttributs.isInsertField);
     }
     else
     {
         return(parAttributs.isUpdateField);
     }
 }
Пример #6
0
        public static String PrepairSelectPrimaryKey(string parTableName, object objEntity)
        {
            string strQueryResult = "";
            string strFields      = "";;
            string strParameter   = "";
            string strPrimaryKey  = "";

            #region Get Primarykey Information from object
            PropertyInfo[] properties = objEntity.GetType().GetProperties();
            foreach (PropertyInfo property in properties)
            {
                var attribute = Attribute.GetCustomAttribute(property, typeof(KeyAttribute)) as KeyAttribute;
                if (attribute != null) // This property has a KeyAttribute
                {
                    // Do something, to read from the property:
                    //object val = property.GetValue(objPrimaryKey);
                    strPrimaryKey = ((TTAttributs)objEntity.GetType().GetProperty(property.Name).GetCustomAttribute(typeof(TTAttributs), false)).FieldName;
                    break;
                }
            }

            #endregion

            properties = objEntity.GetType().GetProperties();
            List <string> fieldlist = new List <string>();
            for (int i = 0; i < properties.Count(); i++)
            {
                var el = properties.ElementAt(i);
                if (el != null)
                {
                    TTAttributs tt = HelperMethod.GetTTAttributes(objEntity, el.Name);
                    if (tt.isTableField == true)
                    {
                        fieldlist.Add(tt.FieldName);
                    }
                }
            }
            strFields    = string.Join(",", fieldlist);
            strParameter = strPrimaryKey + "= @" + strPrimaryKey;

            strFields      = "Select " + strFields + " From " + parTableName;
            strParameter   = " Where " + strParameter;
            strQueryResult = strFields + strParameter;
            return(strQueryResult);
        }
Пример #7
0
        public static String PrepairSelectPerameters(Dictionary <string, Enumration.Operators> parFields, string parTableName, object objEntity)
        {
            string strQueryResult = "";
            string strFields      = "";
            string strParameter   = "";

            List <string> fieldlist = new List <string>();
            List <string> lstParam  = new List <string>();

            PropertyInfo[] properties = objEntity.GetType().GetProperties();

            for (int i = 0; i < properties.Count(); i++)
            {
                var el = properties.ElementAt(i);
                if (el != null)
                {
                    TTAttributs tt = HelperMethod.GetTTAttributes(objEntity, el.Name);
                    if (tt.isTableField == true)
                    {
                        fieldlist.Add(tt.FieldName);
                    }
                }
            }

            if (parFields.Count > 0)
            {
                for (int i = 0; i < parFields.Count; i++)
                {
                    var el = parFields.ElementAt(i);
                    lstParam.Add(el.Value.ToString() + " " + el.Key + "=@" + el.Key);
                }
            }

            strFields      = string.Join(",", fieldlist);
            strParameter   = string.Join(" ", lstParam);
            strFields      = "Select " + strFields + " From " + parTableName + " ";
            strQueryResult = strFields + strParameter;
            return(strQueryResult);
        }
Пример #8
0
        public static String PrepairPartialDeleteQuery(Dictionary <string, bool> parFields, string parTableName, object objEntity)
        {
            string strQueryResult = "";
            string strFields      = "";;
            string strParameter   = "";

            Dictionary <string, bool> parm = parFields.Where(x => x.Value == true).ToDictionary(x => x.Key, x => x.Value);

            if (parm.Count > 1)
            {
                for (int i = 0; i < parm.Count; i++)
                {
                    var         element     = parm.ElementAt(i);
                    TTAttributs MyAttributs = HelperMethod.GetTTAttributes(objEntity, element.Key);
                    if (element.Value == true)
                    {
                        if (i != parm.Count - 1)
                        {
                            strParameter += MyAttributs.FieldName + "= @" + MyAttributs.FieldName + " AND ";
                        }
                        else
                        {
                            strParameter += MyAttributs.FieldName + "= @" + MyAttributs.FieldName;
                        }
                    }
                }
            }
            else
            {
                var         element     = parm.ElementAt(0);
                TTAttributs MyAttributs = HelperMethod.GetTTAttributes(objEntity, element.Key);
                strParameter = MyAttributs.FieldName + "= @" + MyAttributs.FieldName;
            }

            strFields      = "Delete " + parTableName;
            strParameter   = " Where " + strParameter;
            strQueryResult = strFields + strParameter;
            return(strQueryResult);
        }
Пример #9
0
        //usage below method
        //List<ItemDetails> itemDetails = SQLHelper.CopyDataReaderToEntity<ItemDetails>(reader);
        public static TEntity CopyDataReaderToSingleEntity <TEntity>(IDataReader dataReader) where TEntity : class
        {
            TEntity entities = null;

            PropertyInfo[] properties = typeof(TEntity).GetProperties();
            while (dataReader.Read())
            {
                TEntity tempEntity = Activator.CreateInstance <TEntity>();
                foreach (PropertyInfo property in properties)
                {
                    try
                    {
                        TTAttributs MyAttributs = HelperMethod.GetTTAttributes(tempEntity, property.Name);
                        if (MyAttributs.isSelectField)
                        {
                            SetValue <TEntity>(property, tempEntity, dataReader[property.Name]);
                        }
                    }
                    catch { }
                }
                entities = tempEntity;
            }
            return(entities);
        }