每个RIA查询都会创建不同的EF对象上下文吗?

时间:2011-11-23 07:43:58

标签: c# entity-framework ria objectcontext savechanges

我在Silverlight应用程序中使用EF4 / RIA组合。

我的DomainService中有多种服务方法。

其中一个方法从数据库中提取一些数据,然后修改对象的值:

IEnumerable<Factor> GetModifiedFactors(double threshold)
{
    List<Factor> factors = ObjectContext.Where(f => f.Id == selectedId).ToList();

    for(int i = 1; i < factors.Count; i++)
    {
        Factor current = factors[i];
        Factor previous = factors[i - 1];

        // Note that here the value of the entity object has been changed
        current.Value = 2 * current.Value - 3 * previous.Value;
    }

    return factors.Where(f => f.Value > threshold);
}

然后将这些计算值返回给SL应用程序。

请注意,此示例中实体对象的值已更改。

我有另一项服务方法,可以更改某些数据,然后调用.SaveChanges()

[Invoke]
public void ResetFactor(int factorId, double defaultValue)
{
    Factor factor = ObjectContext.Factors.FirstOrDefault(f => f.Id == factorId);

    if(factor == null)
        return;

    factor.Value = defaultValue;

    ObjectContext.SaveChanges();
}

问题:

我想知道的是,第二种服务方法中对SaveChanges的调用是否会影响对第一种服务方法的调用所做的更改?

或者每个RIA查询/服务调用都会创建一个新的EF ObjectContext吗?

1 个答案:

答案 0 :(得分:0)

默认情况下,是的,每个RIA域服务都已创建,初始化,然后执行您的请求。

所以新的ObjectContext无论如何都会直接从数据库中获取对象,因此它将包含其他服务所做的更改。