我在EF 4中使用POCO对象而没有生成任何T4模板。
我有一个封装所有ObjectSet的DataContext类,类似这样的
public sealed class DataContext :IDisposable
{
public IObjectSet GetObjectSet() where T : MyBase
{
object objectSet = null;
this.objectSets.TryGetValue(typeof(T), out objectSet);
if (objectSet == null)
{
objectSet = this.context.CreateObjectSet();
this.objectSets.Add(typeof(T), objectSet);
}
return (IObjectSet)objectSet;
}
public ObjectContext ObjectContext
{
get
{
return this.context;
}
}
}
当我编写以下编译查询并尝试将此类作为参数之一传递时,它会给出一个运行时错误,说明只允许标量参数
static readonly Func<ObjectContext , DataContext, string, int?> getOperationByOrchestrationName
= CompiledQuery.Compile(
(ObjectContext ctx, DataContext container, string name) =>
(from or in container.GetObjectSet<MyOrClass>()
join op in container.GetObjectSet<MyOpClass>()
on or.Id equals op.Id
where op.Name == name
select op.Id).FirstOrDefault()
);
如果我修改这样的查询它可以工作,但我深深怀疑它每次都被编译,因为我没有看到我从编译查询中看到的性能提升,有人可以指出最新情况吗?
static readonly Func, IObjectSet, string, IQueryable>
getOperationByOrchestrationName
= CompiledQuery.Compile(
(ObjectContext ctx, IObjectSet ors, IObjectSet ops,string operationName) =>
from or in ors
join op in ops
on or.Id equals op.Id
where op.Name == name
select op.Id
);
答案 0 :(得分:0)
对于任何感兴趣的人,如果从编译查询中返回IQueryable并调用任何可以更改查询的方法(singleordefault或firstordefault等),您将无法从编译查询中获益。