I'm using Breeze.Sharp within a thick client application with WebApi at the server side. There is an issue I am noticing when I make multiple calls of ExecuteQuery on EntityManager object.
If the tasks returned by ExecuteQuery calls are not completed in the order they were created with, then the EntityManager will fail to change the state of any modified entities. Modified entities will always stay in Unchanged state, thereby sending blank response in the SaveChanges call.
public Task<IEnumerable<SomeType>> GetSomeTypeAsync(string type)
{
EntityQuery<SomeType> query = new EntityQuery<SomeType>()
.Expand("Nav1,Nav2").Where(s => s.Type = type);
return entityManager.ExecuteQuery(query);
}
The code above is pretty straight forward, but if I call this method in a loop with some calls slower than the others I get the issue as described.
Looking into the source seems like EntityManager is not thread safe. There is an internal boolean property IsLoadingEntity on the EntityManager object which stays set to True as it goes through these multiple ExecuteQuery calls and even when all tasks get completed this property doesn't get set back to false. And this results in SaveChanges doing nothing.
Does this sound familiar to anyone? Have we got any fixes or am I doing something completely wrong?