BreezeJS: Applying Client Query in Controller
问题 Is there anyway to apply the user query in the controller in order to perform some actions to the final result set? Take the following example: [HttpGet] public IQueryable<Container> Containers(bool populate) { var containers = _contextProvider.Context.Containers; if (populate) { foreach (var container in containers) { container.Populate(_contextProvider.Context); } } return containers; } The problem here is that I am doing this Populate() action to all records in this table instead of just