Exemple #1
0
        public static List <PropertyMaster> GetList(string sorton = "", string sortdirection = "")
        {
            List <PropertyMaster> _PropertyList = new List <PropertyMaster>();
            string connectionString             = ConfigurationManager.ConnectionStrings["DemoMVC_DB"].ConnectionString;;// "Persist Security Info=False;User ID=sa;Password=sa@123;Initial Catalog=MVCDemoDB;Server=Bilal-PC";

            using (SqlConnection connection = new SqlConnection(connectionString))
            {
                SqlCommand cmd    = new SqlCommand();
                string     sQuery = "Select PropertyName, PropertyDescription From PropertyMaster Order By LastModifiedDateTime Desc";
                if (sorton.Length > 0 && sortdirection.Length > 0)
                {
                    sQuery = "Select PropertyName, PropertyDescription From PropertyMaster Order By " + sorton + " " + sortdirection;
                }
                cmd.CommandText = sQuery;
                cmd.Connection  = connection;
                connection.Open();
                SqlDataReader myDataReader;
                myDataReader = cmd.ExecuteReader();
                if (myDataReader.HasRows)
                {
                    while (myDataReader.Read())
                    {
                        PropertyMaster obj = new PropertyMaster();
                        obj.PropertyName        = myDataReader["PropertyName"].ToString();
                        obj.PropertyDescription = myDataReader["PropertyDescription"].ToString();
                        _PropertyList.Add(obj);
                    }
                }
            }


            return(_PropertyList);
        }
Exemple #2
0
        public bool AddData(PropertyMaster objPropertyMaster)
        {
            string connectionString = ConfigurationManager.ConnectionStrings["DemoMVC_DB"].ConnectionString;; // "Persist Security Info=False;User ID=sa;Password=sa@123;Initial Catalog=MVCDemoDB;Server=Bilal-PC";


            using (SqlConnection connection = new SqlConnection(connectionString))
            {
                SqlCommand cmd = new SqlCommand();

                cmd.CommandText = "INSERT INTO PropertyMaster (PropertyName, PropertyDescription) VALUES ('" + objPropertyMaster.PropertyName + "','" + objPropertyMaster.PropertyDescription + "')";

                cmd.Connection = connection;

                connection.Open();
                cmd.ExecuteNonQuery();
            }
            return(true);
        }