No results yet no error with N-Tier Entity Framework
问题 I have created a demo project using the N-Tier Entity Framework VS2012. the problem is that there are no results returned no mather what i request. No Errors are thrown of detected? Any suggestions here are welcome? 回答1: Make sure to call the AsQueriable() method for requesting data from the backend. N-Tier Entity Framework supports both, local and remote queries. While e.g. context.Orders.ToList() only returns what’s already in client memory, you can call context.Orders. AsQueriable()