ef、linq怎么实现以下的功能
str sqlstr="select a.* from a"
if (code1!="")
sqlstr=sqlstr+" join b on a.id=b.id && b.code=code1"
if (code2!="")
sqlstr=sqlstr+" join c on a.id=c.id && c.code=code1"
在SQL Server Management Studio里直接运行
select distinct(s.Title) from Table1 as si
join Table2 as t on SUBSTRING(t.Code,1,12)='010101010108' and t.tid=si.tid
join ST as st on SUBSTRING(st.Code,1,4)='0104' and st.stid=si.stid
join S as s on SUBSTRING(s.SpellTitle,1,1)='C' and si.sid=s.sid
where si.IsAudited='true' and si.IsDeleted='false' and si.IsVisable='true'
第一次150ms,接下来都是50ms以下。
但是在代码里
IEnumerable<SI> list = _dataContext.SI.Where(a =>
(filterModel == 1 ? a.IsAudited == true && a.IsDeleted == false && a.IsVisable == true : a.IsDeleted == false) &&
(Code == "" ? true : a.ST.Code.StartsWith(Code)) &&
(tid== 0 ? true : a.tid== tid)).Distinct(....);
最少都在500ms以上,更甚的是,用老外的PredicateBuilder构建表达式,最少都在1.5m左右,这样明显有哪里做得不好.
你会写这个SQL语句吗?如果会的话,请使用Linqer工具,可以从SQL语句转成LINQ形式~
会啊,就是手动写了试一下才发现差距那么大。。。我试一下
@BorgChen: 肯定是有差距的!
@cheersun2010: 主要是太大,本地500+ms传到主机1000+,数据加载明显有停顿感。
join t in _dataContext.T
on new { t.Code.Substring(1 -1 , 12), tid= (Int32)si.tid}
equals new { "010101010108", t.tid}
生成的子句里,红字部分提示错误,
无效的匿名类型成员声明符。匿名类型成员必须使用赋值、简单名称或成员访问来声明
求指教!
这个已经看过了,不适用的。一个是要复合属性,再要动态拼接。
好像on有这种写法,on new{a.id,a.other} equals new {b.id,b.other},也有人写做on new{k1=a.id,k2=a.other} equals new {k1=b.id,k2=b.other},但不知道具体细化到我这个例子怎么写,不只是两表相关字段的匹配,其中一个k2=code1?
var query = from s in test.BS_Roster
join c in test.BS_CLASS
on s.rid = c.rid
select s ;