コード例 #1
0
ファイル: SeoService.cs プロジェクト: war-man/RST_Admin
        public List <SeoContent> GetSeoContent(string QueryConditionPartParam)
        {
            QueryConditionPartParam = QueryConditionPartParam == null ? "" : QueryConditionPartParam;
            List <SeoContent> GridRecords = new List <SeoContent>();
            var command = dbContext.CreateCommand();

            command.CommandType = CommandType.StoredProcedure;
            command.CommandText = "sp_SeoContent_Get";
            command.AddParameter("@QueryConditionPartParam", QueryConditionPartParam, DbType.String);
            command.OpenConnection();
            var reader = command.OpenReader();

            while (reader.Read())
            {
                SeoContent GridRecord = new SeoContent()
                {
                    RowId           = reader.ValidateColumnExistExtractAndCastTo <int>("RowId"),
                    MetaTitle       = reader.ValidateColumnExistExtractAndCastTo <string>("MetaTitle"),
                    MetaKeyword     = reader.ValidateColumnExistExtractAndCastTo <string>("MetaKeyword"),
                    MetaDescription = reader.ValidateColumnExistExtractAndCastTo <string>("MetaDescription"),
                };
                GridRecords.Add(GridRecord);
            }

            command.CloseConnection();
            return(GridRecords);
        }
コード例 #2
0
ファイル: SeoService.cs プロジェクト: war-man/RST_Admin
        public IList <SeoContent> UpdateSeoContent(List <SeoContent> tasks)
        {
            var result  = new List <SeoContent>();
            var command = dbContext.CreateCommand();

            command.CommandType = CommandType.StoredProcedure;
            command.CommandText = "sp_SeoContent_u";
            SqlParameter[] sqlParams = new SqlParameter[4];
            sqlParams[0] = new SqlParameter("@RowId", SqlDbType.Int, 8);
            sqlParams[1] = new SqlParameter("@MetaTitle", SqlDbType.VarChar, 400);
            sqlParams[2] = new SqlParameter("@MetaKeyword", SqlDbType.VarChar, 400);
            sqlParams[3] = new SqlParameter("@MetaDescription", SqlDbType.VarChar, 5000);

            using (var transaction = new TransactionScope())
            {
                using (command.Connection)
                {
                    if (command.Connection.State == ConnectionState.Closed)
                    {
                        command.Connection.Open();
                    }

                    foreach (var item in tasks)
                    {
                        var data = new SeoContent();
                        command.Parameters.Clear();

                        sqlParams[0].Value = (object)item.RowId;
                        sqlParams[1].Value = (object)item.MetaTitle;
                        sqlParams[2].Value = (object)item.MetaKeyword;
                        sqlParams[3].Value = (object)item.MetaDescription;
                        command.Parameters.Add(sqlParams[0]);
                        command.Parameters.Add(sqlParams[1]);
                        command.Parameters.Add(sqlParams[2]);
                        command.Parameters.Add(sqlParams[3]);
                        try
                        {
                            command.ExecuteNonQuery();
                            data.RowId   = item.RowId;
                            data.Message = "";
                        }
                        catch (Exception ex)
                        {
                            data.RowId   = item.RowId;
                            data.Message = "Error while updating record.";
                        }
                        finally
                        {
                            result.Add(data);
                        }
                    }
                }
                transaction.Complete();
            }
            return(result);
        }
コード例 #3
0
ファイル: SEOController.cs プロジェクト: war-man/RST_Admin
        public IActionResult AddSeoContent([FromBody] SeoContent request)
        {
            var response = new OperationResponse <bool>();

            try
            {
                response.Data = _seoService.AddSeoContent(request);
            }
            catch (Exception exception)
            {
                response.State = ResponseState.Error;
                response.Messages.Add(exception.Message);
                _logger.LogError(exception, "Error in AddSeoContent ==>" + exception.StackTrace, request);
            }
            return(new JsonResult(response));
        }
コード例 #4
0
ファイル: SeoService.cs プロジェクト: war-man/RST_Admin
        public bool AddSeoContent(SeoContent seoContent)
        {
            int result;
            var command = dbContext.CreateCommand();

            command.CommandType = CommandType.StoredProcedure;
            command.CommandText = "sp_SeoContent_i";
            command.AddParameter("@MetaTitle", seoContent.MetaTitle, DbType.String, 400);
            command.AddParameter("@MetaKeyword", seoContent.MetaKeyword, DbType.String, 400);
            command.AddParameter("@MetaDescription", seoContent.MetaDescription, DbType.String, 5000);
            try
            {
                command.OpenConnection();
                result = command.ExecuteNonQuery();
            }
            finally
            {
                command.CloseConnection();
            }
            return(result > 0);
        }