I am using EF4/RIA combo in a Silverlight application.

I have multiple service methods in my DomainService.

One of the methods fetches some data from the database and then modifies the objects' values:

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);
}

These calculated values are then returned to the SL application.

Note in this example that the entity object's value has been changed.

I have another service method that changes some data and then calls .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();
}

Question:

What I want to know is whether this call to SaveChanges in the second service method will affect changes made in the call to the first service method?

Or does every RIA query/service-call create a new EF ObjectContext?

link|improve this question

78% accept rate
feedback

1 Answer

up vote 0 down vote accepted

By default, yes, every RIA Domain Service is created, initialized and then it executes your request.

So new ObjectContext will anyway fetch objects directly from database, so it will contain changes made by other service.

link|improve this answer
I have edited my question to include better example. What I need to know is whether SaveChanges in the ResetFactor method will save the changes made in previous call to GetModifiedFactors()? That's basically asking whether the ObjectContext instance is preserved accross different Domain Service Calls? – Kornelije Petak Nov 23 '11 at 11:19
Answer is still same, "YES", every method call from client is actually a separate request and each request is executed isolately along with new ObjectContext, so the changes will be reflected from database correctly. – Akash Kava Nov 23 '11 at 14:23
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.