linq带参数的传值
linq动态参数,linq怎么像sql语句一样可以实现拼接字符串,比如WHERE=@条件参数,@排序参数==0?descending:ascending等等,刚刚学习LI...
linq 动态参数,linq怎么像sql语句一样可以实现拼接字符串,比如WHERE=@条件参数 ,@排序参数==0?descending:ascending等等,刚刚学习LINQ部知道怎么加入参数
展开
2个回答
展开全部
我把我写的例子贴出来希望对你有所帮助!
//统计一段时间,按咨询师的咨询量,包括:咨询师总咨询量、已报名量、已流失量、已关闭量、已定做量、正在咨询的量
var lst = (from r in MyDataContent.rdc.ref_referInfo
from m in MyDataContent.rdc.Employee
where (r.ReferManID == m.employeeID) &&
(refermanName == "" ? (1 == 1) : m.Name.Contains(refermanName)) &&
(startDate == null ? (1 == 1) : r.InfoDate.CompareTo(startDate) >= 0) &&
(endDate == null ? (1 == 1) : r.InfoDate.CompareTo(endDate.Value.AddDays(1)) < 0)
group r by m.Name into g
select
new
{
咨询师 = g.Key,
总量 = g.Count(),
已报名量 = g.Count(o => o.ProcessStaus.Trim() == "已报名"),
已定座量 = g.Count(o => o.ProcessStaus.Trim() == "已订座"),
已上门量 = g.Count(o => o.ProcessStaus.Trim() == "已上门"),
正在咨询 = g.Count(o => o.ProcessStaus.Trim() == "咨询中"),
未指派 = g.Count(o => o.ProcessStaus.Trim() == "未指派"),
已指派 = g.Count(o => o.ProcessStaus.Trim() == "已指派"),
已接收 = g.Count(o => o.ProcessStaus.Trim() == "已接收"),
已流失量 = g.Count(o => o.ProcessStaus.Trim() == "已流失")
});
//统计一段时间,按咨询师的咨询量,包括:咨询师总咨询量、已报名量、已流失量、已关闭量、已定做量、正在咨询的量
var lst = (from r in MyDataContent.rdc.ref_referInfo
from m in MyDataContent.rdc.Employee
where (r.ReferManID == m.employeeID) &&
(refermanName == "" ? (1 == 1) : m.Name.Contains(refermanName)) &&
(startDate == null ? (1 == 1) : r.InfoDate.CompareTo(startDate) >= 0) &&
(endDate == null ? (1 == 1) : r.InfoDate.CompareTo(endDate.Value.AddDays(1)) < 0)
group r by m.Name into g
select
new
{
咨询师 = g.Key,
总量 = g.Count(),
已报名量 = g.Count(o => o.ProcessStaus.Trim() == "已报名"),
已定座量 = g.Count(o => o.ProcessStaus.Trim() == "已订座"),
已上门量 = g.Count(o => o.ProcessStaus.Trim() == "已上门"),
正在咨询 = g.Count(o => o.ProcessStaus.Trim() == "咨询中"),
未指派 = g.Count(o => o.ProcessStaus.Trim() == "未指派"),
已指派 = g.Count(o => o.ProcessStaus.Trim() == "已指派"),
已接收 = g.Count(o => o.ProcessStaus.Trim() == "已接收"),
已流失量 = g.Count(o => o.ProcessStaus.Trim() == "已流失")
});
展开全部
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询