asp.net 에서 실 현 된 MVC 크로스 데이터베이스 다 중 표 결합 동적 조건 조회 기능 예제
1.컨트롤 러 의 방법
[HttpGet]
public ActionResult Search()
{
ViewBag.HeadTitle = " ";
ViewBag.MetaKey = "\"123\"";
ViewBag.MetaDes = "\"456\"";
string whereText = "";
if (Security.HtmlHelper.GetQueryString("first", true) != string.Empty)
{
whereText += " and a.ParentId='" + StringFilter("first", true)+"'";
}
if (Security.HtmlHelper.GetQueryString("second", true) != string.Empty)
whereText += " and a.categoryId='" + StringFilter("second",true)+"'";
string valueStr = "";
if (Security.HtmlHelper.GetQueryString("theme", true) != string.Empty)
valueStr += StringFilter("theme", true) + ",";
if (Security.HtmlHelper.GetQueryString("size", true) != string.Empty)
valueStr += StringFilter("size", true) + ",";
if (Security.HtmlHelper.GetQueryString("font", true) != string.Empty)
valueStr += StringFilter("font", true) + ",";
if (Security.HtmlHelper.GetQueryString("shape", true) != string.Empty)
valueStr += StringFilter("shape", true) + ",";
if (Security.HtmlHelper.GetQueryString("technique", true) != string.Empty)
valueStr += StringFilter("technique", true) + ",";
if (Security.HtmlHelper.GetQueryString("category", true) != string.Empty)
valueStr += StringFilter("category", true) + ",";
if (Security.HtmlHelper.GetQueryString("place", true) != string.Empty)
valueStr += StringFilter("place", true) + ",";
if (Security.HtmlHelper.GetQueryString("price", true) != string.Empty)
valueStr += StringFilter("price", true) + ",";
if (valueStr != "")
{
valueStr=valueStr.Substring(0, valueStr.Length - 1);
whereText += " and f.valueId in("+valueStr+")";
}
if (Security.HtmlHelper.GetQueryString("searchKeys", true) != string.Empty)
whereText += " and a.SaleTitle like '%'" + StringFilter("searchKes", true) + "'%' or a.SaleDes like '%'" + StringFilter("searchKes", true) + "'%' or a.SaleAuthor like '%'" + StringFilter("searchKes", true) + "'%' or a.KeyWords like '%'" + StringFilter("searchKes", true) + "'%' or g.valueProperty like '%'" + StringFilter("searchKes", true) + "'%'";
int pageSize = 50;
int pageIndex = HttpContext.Request.QueryString["pageIndex"].Toint(1);
List<string> searchInfo = Search(pageIndex, pageSize, whereText, 1);
if (Security.HtmlHelper.GetQueryString("sort", true) != string.Empty)
{
string sort = StringFilter("sort", true);
switch (sort)
{
case "1": // id
searchInfo = Search(pageIndex, pageSize, whereText, 1);
break;
case"2": //
searchInfo = Search(pageIndex, pageSize, whereText,0, "saleTotal");
break;
case "3": //
searchInfo = Search(pageIndex, pageSize, whereText,0, "favoritesTotal");
break;
case "4": //
searchInfo = Search(pageIndex, pageSize, whereText,1);
break;
case "5": //
searchInfo = Search(pageIndex, pageSize, whereText,2);
break;
}
}
string jsonStr = searchInfo[0];
ViewData["jsondata"] = jsonStr;
int allCount = Utility.Toint(searchInfo[1], 0);
ViewBag.AllCount = allCount;
ViewBag.MaxPages = allCount % pageSize == 0 ? allCount / pageSize : (allCount / pageSize + 1).Toint(1);
return View();
}
[NonAction]
public List<string> Search(int pageIndex, int pageSize, string whereText, int orderByPrice, string orderBy = "SaleId")
{
BLL.Products searchInfoBLL = new BLL.Products();
List<string> searchInfo = searchInfoBLL.GetSearchInfo(pageIndex, pageSize, whereText, orderByPrice,orderBy);
return searchInfo;
}
주:Security.HtmlHelper.GetQueryString(),StringFilter()가 자신 을 위해 봉 인 된 방법 으로 매개 변수 값 을 걸 러 내 는 데 사 용 됩 니 다.2.BLL 층 방법
using System;
using System.Web;
using System.Web.Caching;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Data;
using System.Data.Common;
using System.Web.Script.Serialization;
using FotosayMall.Model;
using FotosayMall.Common;
using System.Text.RegularExpressions;
using System.IO;
using Newtonsoft.Json;
using Newtonsoft.Json.Converters;
using FotosayMall.MVC.Models;
namespace FotosayMall.BLL
{
public class Products
{
private readonly DAL.Products dal = new DAL.Products();
/// <summary>
/// ,
/// </summary>
/// <param name="pageIndex"></param>
/// <param name="pageSize"></param>
/// <param name="orderByPrice"> :0 ,1 ,2 </param>
/// <returns></returns>
public List<string> GetSearchInfo(int pageIndex, int pageSize, string whereText, int orderByPrice, string orderBy = "SaleId")
{
DataSet searchInfoTables = dal.GetSearchInfo(pageIndex, pageSize, whereText);
//
int allCount = Utility.Toint(searchInfoTables.Tables[1].Rows[0]["rowsTotal"], 0);
var searchInfo = from list in searchInfoTables.Tables[0].AsEnumerable().OrderByDescending(x => x.Table.Columns[orderBy])
select new SearchModel
{
Url = "/home/products?saleId=" + list.Field<int>("SaleId"),
Author = list.Field<string>("SaleAuthor"),
PhotoFileName = list.Field<string>("PhotoFileName"),
PhotoFilePathFlag = list.Field<int>("PhotoFilePathFlag"),
Province = list.Field<string>("Place").Split(' ').First(),
SalePrice = list.Field<decimal>("SalePrice"),
UsingPrice = list.Field<decimal>("usingPrice"),
Title = list.Field<string>("SaleTitle").Length > 30 ? list.Field<string>("SaleTitle").Substring(0, 30) : list.Field<string>("SaleTitle"),
Year = list.Field<DateTime>("BuildTime").ToString("yyyy") == "1900" ? "" : list.Field<DateTime>("BuildTime").ToString("yyyy ")
};
if (orderByPrice==2)
searchInfo = searchInfo.OrderByDescending(x => x.Price);
else if (orderByPrice == 1)
searchInfo = searchInfo.OrderBy(x => x.Price);
string jsonStr = JsonConvert.SerializeObject(searchInfo);
List<string> dataList = new List<string>();
dataList.Add(jsonStr);
dataList.Add(allCount.ToString());
return dataList;
}
}
}
주:DataTable 에서 Linq 조회 에 사용 할 수 있 는 방법 으로 바 뀌 는 것 을 주의 깊 게 관찰 하 십시오.DAL
/// <summary>
///
/// </summary>
/// <param name="pageIndex"></param>
/// <param name="pageSize"></param>
/// <returns></returns>
public DataSet GetSearchInfo(int pageIndex, int pageSize, string whereText)
{
StringBuilder sqlText = new StringBuilder();
sqlText.Append("select * from (");
sqlText.Append("select a.SaleId,a.PhotoId,SaleTitle,SaleAuthor,a.Status,a.categoryId,c.UserID,c.UserName,b.PhotoFilePathFlag,b.PhotoFileName,coalesce(e.BuildTime,0) BuildTime,c.Place,coalesce(d.usingPrice,0) usingPrice,coalesce(e.SalePrice,0) SalePrice,h.saleTotal,h.favoritesTotal,row_number() over(order by a.saleId) rowsNum ");
sqlText.Append("from fotosay..Photo_Sale a join fotosay..Photo_Basic b on a.PhotoId = b.PhotoID ");
sqlText.Append("join fotosay..System_AccountsDescription c on b.UserID = c.UserID ");
sqlText.Append("left join fotosay..Photo_Sale_Picture d on a.SaleId = d.SaleId ");
sqlText.Append("left join fotosay..Photo_Sale_Tangible e on a.saleId = e.saleId ");
sqlText.Append("join FotosayMall..Fotomall_Product_Relation f on f.saleId = a.SaleId ");
sqlText.Append("join FotosayMall..Fotomall_Product_PropertyValue g on g.categoryId = a.categoryId and g.valueId = f.valueId and g.propertyId = f.propertyId ");
sqlText.Append("join fotosay..Photo_Sale_Property h on a.saleId = h.saleId ");
sqlText.Append("where a.Status=1 " + whereText + " ");
sqlText.Append("group by a.SaleId,a.PhotoId,SaleTitle,SaleAuthor,a.Status,a.categoryId,c.UserID,c.UserName,b.PhotoFilePathFlag,b.PhotoFileName,e.BuildTime,c.Place,usingPrice,SalePrice,h.saleTotal,h.favoritesTotal ");
sqlText.Append(") t where rowsNum between @PageSize*(@PageIndex-1)+1 and @PageSize*@PageIndex;");
sqlText.Append("select count(distinct a.saleId) rowsTotal from fotosay..Photo_Sale a join (select b1.PhotoFilePathFlag,b1.PhotoFileName,b1.UserID,b1.PhotoID from fotosay..Photo_Basic b1 union select b2.PhotoFilePathFlag,b2.PhotoFileName,b2.UserID,b2.PhotoID from fotosay..Photo_Basic_History b2 ) b on a.PhotoId = b.PhotoID join fotosay..System_AccountsDescription c on b.UserID = c.UserID left join fotosay..Photo_Sale_Picture d on a.SaleId = d.SaleId left join fotosay..Photo_Sale_Tangible e on a.saleId = e.saleId join FotosayMall..Fotomall_Product_Relation f on f.saleId = a.SaleId join FotosayMall..Fotomall_Product_PropertyValue g on g.categoryId = a.categoryId and g.valueId = f.valueId and g.propertyId = f.propertyId join fotosay..Photo_Sale_Property h on a.saleId = h.saleId where a.Status=1 " + whereText + ";");
DbParameter[] parameters = {
Fotosay.CreateInDbParameter("@PageIndex", DbType.Int32,pageIndex),
Fotosay.CreateInDbParameter("@PageSize", DbType.Int32,pageSize)
};
DataSet searchInfoList = Fotosay.ExecuteQuery(CommandType.Text, sqlText.ToString(), parameters);
// ,
if (searchInfoList.Tables[0].Rows.Count < pageSize)
{
string sql = "select top(1) a.saleId from fotosay..Photo_Sale a join fotosay..Photo_Basic_History b on a.PhotoId = b.PhotoID join fotosay..System_AccountsDescription c on b.UserID = c.UserID left join fotosay..Photo_Sale_Picture d on a.SaleId = d.SaleId left join fotosay..Photo_Sale_Tangible e on a.saleId = e.saleId join FotosayMall..Fotomall_Product_Relation f on f.saleId = a.SaleId join FotosayMall..Fotomall_Product_PropertyValue g on g.categoryId = a.categoryId and g.valueId = f.valueId and g.propertyId = f.propertyId join fotosay..Photo_Sale_Property h on a.saleId = h.saleId where a.Status=1 " + whereText + ";";
DataSet ds = Fotosay.ExecuteQuery(CommandType.Text, sql.ToString(), parameters);
if (ds != null && ds.Tables[0].Rows.Count > 0)
{
StringBuilder sqlTextMore = new StringBuilder();
sqlTextMore.Append("select * from (");
sqlTextMore.Append("select a.SaleId,a.PhotoId,SaleTitle,SaleAuthor,a.Status,a.categoryId,c.UserID,c.UserName,b.PhotoFilePathFlag,b.PhotoFileName,coalesce(e.BuildTime,0) BuildTime,c.Place,coalesce(d.usingPrice,0) usingPrice,coalesce(e.SalePrice,0) SalePrice,h.saleTotal,h.favoritesTotal,row_number() over(order by a.saleId) rowsNum ");
sqlTextMore.Append("from fotosay..Photo_Sale a ");
sqlTextMore.Append("join (select b1.PhotoFilePathFlag,b1.PhotoFileName,b1.UserID,b1.PhotoID from fotosay..Photo_Basic b1 union select b2.PhotoFilePathFlag,b2.PhotoFileName,b2.UserID,b2.PhotoID from fotosay..Photo_Basic_History b2 ) b on a.PhotoId = b.PhotoID join fotosay..System_AccountsDescription c on b.UserID = c.UserID ");
sqlTextMore.Append("left join fotosay..Photo_Sale_Picture d on a.SaleId = d.SaleId ");
sqlTextMore.Append("left join fotosay..Photo_Sale_Tangible e on a.saleId = e.saleId ");
sqlTextMore.Append("join FotosayMall..Fotomall_Product_Relation f on f.saleId = a.SaleId ");
sqlTextMore.Append("join FotosayMall..Fotomall_Product_PropertyValue g on g.categoryId = a.categoryId and g.valueId = f.valueId and g.propertyId = f.propertyId ");
sqlTextMore.Append("join fotosay..Photo_Sale_Property h on a.saleId = h.saleId ");
sqlTextMore.Append("where a.Status=1 " + whereText + " ");
sqlTextMore.Append("group by a.SaleId,a.PhotoId,SaleTitle,SaleAuthor,a.Status,a.categoryId,c.UserID,c.UserName,b.PhotoFilePathFlag,b.PhotoFileName,e.BuildTime,c.Place,usingPrice,SalePrice,h.saleTotal,h.favoritesTotal");
sqlTextMore.Append(") t where rowsNum between @PageSize*(@PageIndex-1)+1 and @PageSize*@PageIndex;");
sqlTextMore.Append("select count(distinct a.saleId) rowsTotal from fotosay..Photo_Sale a join (select b1.PhotoFilePathFlag,b1.PhotoFileName,b1.UserID,b1.PhotoID from fotosay..Photo_Basic b1 union select b2.PhotoFilePathFlag,b2.PhotoFileName,b2.UserID,b2.PhotoID from fotosay..Photo_Basic_History b2 ) b on a.PhotoId = b.PhotoID join fotosay..System_AccountsDescription c on b.UserID = c.UserID left join fotosay..Photo_Sale_Picture d on a.SaleId = d.SaleId left join fotosay..Photo_Sale_Tangible e on a.saleId = e.saleId join FotosayMall..Fotomall_Product_Relation f on f.saleId = a.SaleId join FotosayMall..Fotomall_Product_PropertyValue g on g.categoryId = a.categoryId and g.valueId = f.valueId and g.propertyId = f.propertyId join fotosay..Photo_Sale_Property h on a.saleId = h.saleId where a.Status=1 " + whereText + ";");
searchInfoList = Fotosay.ExecuteQuery(CommandType.Text, sqlTextMore.ToString(), parameters);
}
}
return searchInfoList;
}
주:그 중에서 사용 하 는 크로스 데이터베이스 조회 방식 과 유 니 온 의 사용 방식 에 주의 하 십시오.Model
using System;
using System.Collections.Generic;
using System.Configuration;
using System.Linq;
using System.Web;
namespace FotosayMall.MVC.Models
{
public class SearchModel
{
/// <summary>
/// ( url )
/// </summary>
private const string OriginImagesUrlFolder = "userimages/photos_origin";
/// <summary>
///
/// </summary>
public string Url { get; set; }
/// <summary>
/// (1 fotosay,2 img,3 img1)
/// </summary>
public int PhotoFilePathFlag { get; set; }
/// <summary>
///
/// </summary>
public string PhotoFileName { get; set; }
/// <summary>
///
/// </summary>
public string Title { get; set; }
/// <summary>
///
/// </summary>
public string Province { get; set; }
/// <summary>
///
/// </summary>
public string Author { get; set; }
/// <summary>
///
/// </summary>
public string Year { get; set; }
/// <summary>
/// :
/// </summary>
public decimal UsingPrice { get; set; }
/// <summary>
/// :
/// </summary>
public decimal SalePrice { get; set; }
/// <summary>
///
/// </summary>
public string Price
{
get
{
if (this.UsingPrice > 0)
return this.UsingPrice.ToString();
else if (this.SalePrice > 0)
return this.SalePrice.ToString();
else
return " ";
}
}
/// <summary>
///
/// </summary>
private string MasterSite
{
get { return ConfigurationManager.AppSettings["masterSite"].ToString(); }
}
/// <summary>
///
/// </summary>
public string Img
{
get
{
return MasterSite + "/" + OriginImagesUrlFolder + this.PhotoFileName + "b.jpg";
}
}
}
}
asp.net 관련 내용 에 관심 이 있 는 독자 들 은 본 사이트 의 주 제 를 볼 수 있 습 니 다.본 고 에서 말 한 것 이 여러분 의 asp.net 프로 그래 밍 에 도움 이 되 기 를 바 랍 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
작업 중 문제 해결 - (win 2003 asp. net) Session 과 페이지 전송 방법 으로 해결 방안 을 정상적으로 사용 할 수 없습니다.또한 F 는 처음에 우리 의 BP & IT 프로젝트 팀 이 Forms 폼 검증 을 사용 했다 고 판단 할 수 있 습 니 다. 페이지 를 뛰 어 넘 는 것 은http://hr.bingjun.cc/MyTask/MyTas...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.