本文实例讲述了asp.net实现的MVC跨数据库多表联合动态条件查询功能。分享给大家供大家参考,具体如下:

一、控制器中方法
[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()为自己封装的方法,用于过滤参数值
二、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;
}
注:注意其中使用的跨数据库查询的方式和union的一种使用方式
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优化技巧总结》、《asp.net字符串操作技巧汇总》、《asp.net操作XML技巧总结》、《asp.net文件操作技巧汇总》、《asp.net ajax技巧总结专题》及《asp.net缓存操作技巧总结》。
希望本文所述对大家asp.net程序设计有所帮助。
# asp.net
# MVC
# 跨数据库
# 多表
# 联合
# 动态条件
# 查询
# ASP.NET MVC把数据库中枚举项的数字转换成文字
# 使用EF Code First搭建简易ASP.NET MVC网站并允许
# asp.net mvc CodeFirst模式数据库迁移步骤详解
# asp.net mvc 从数据库中读取图片的实现代码
# asp.net MVC 根据菜单树类别不同动态加载视图的实现步骤
# ASP.NET MVC使用jQuery的Load方法加载静态页面及注意事项
# ASP.NET Mvc开发之EF延迟加载
# ASP.NET MVC懒加载如何逐步加载数据库信息
# 升序
# 降序
# 操作技巧
# 相关内容
# 感兴趣
# 给大家
# 分页
# 上架
# 更多关于
# 转换为
# 所述
# 程序设计
# 条数
# 查询功能
# 数据库查询
# 器中
# 可用于
# 讲述了
# jsonStr
# ViewData
相关文章:
成都网站制作报价公司,成都工业用气开户费用?
手机钓鱼网站怎么制作视频,怎样拦截钓鱼网站。怎么办?
如何通过建站之星自助学习解决操作问题?
早安海报制作网站推荐大全,企业早安海报怎么每天更换?
如何通过服务器快速搭建网站?完整步骤解析
盘锦网站制作公司,盘锦大洼有多少5G网站?
音响网站制作视频教程,隆霸音响官方网站?
如何快速搭建虚拟主机网站?新手必看指南
如何做网站制作流程,*游戏网站怎么搭建?
公众号网站制作网页,微信公众号怎么制作?
如何在Windows环境下新建FTP站点并设置权限?
外贸公司网站制作哪家好,maersk船公司官网?
头像制作网站在线制作软件,dw网页背景图像怎么设置?
专业网站制作服务公司,有哪些网站可以免费发布招聘信息?
如何快速生成凡客建站的专业级图册?
详解一款开源免费的.NET文档操作组件DocX(.NET组件介绍之一)
微网站制作教程,我微信里的网站怎么才能复制到浏览器里?
音乐网站服务器如何优化API响应速度?
GML (Geography Markup Language)是什么,它如何用XML来表示地理空间信息?
建站主机核心功能解析:服务器选择与网站搭建流程指南
阿里云网站搭建费用解析:服务器价格与建站成本优化指南
如何快速查询网址的建站时间与历史轨迹?
如何在新浪SAE免费搭建个人博客?
昆明高端网站制作公司,昆明公租房申请网上登录入口?
视频网站app制作软件,有什么好的视频聊天网站或者软件?
,网页ppt怎么弄成自己的ppt?
如何零成本快速生成个人自助网站?
建站主机SSH密钥生成步骤及常见问题解答?
制作假网页,招聘网的薪资待遇,会有靠谱的吗?一面试又各种折扣?
行程制作网站有哪些,第三方机票电子行程单怎么开?
建站OpenVZ教程与优化策略:配置指南与性能提升
猪八戒网站制作视频,开发一个猪八戒网站,大约需要多少?或者自己请程序员,需要什么程序员,多少程序员能完成?
如何在IIS7中新建站点?详细步骤解析
如何在西部数码注册域名并快速搭建网站?
免费制作小说封面的网站有哪些,怎么接网站批量的封面单?
相册网站制作软件,图片上的网址怎么复制?
如何制作网站标识牌,动态网站如何制作(教程)?
公司网站制作价格怎么算,公司办个官网需要多少钱?
如何优化Golang Web性能_Golang HTTP服务器性能提升方法
微信小程序 input输入框控件详解及实例(多种示例)
湖南网站制作公司,湖南上善若水科技有限公司做什么的?
无锡营销型网站制作公司,无锡网选车牌流程?
如何选择高效稳定的ISP建站解决方案?
SQL查询语句优化的实用方法总结
网站建设制作需要多少钱费用,自己做一个网站要多少钱,模板一般多少钱?
如何使用Golang table-driven基准测试_多组数据测量函数效率
如何在橙子建站上传落地页?操作指南详解
利用JavaScript实现拖拽改变元素大小
小米网站链接制作教程,请问miui新增网页链接调用服务有什么用啊?
如何用虚拟主机快速搭建网站?详细步骤解析
*请认真填写需求信息,我们会在24小时内与您取得联系。