Posted on: 4/19/2011 9:50:21 AM | Views : 1184

Hi
I am trying to get a WCF Service to work with Entity Framework (The WCF web service is in a Azure project)
The set up is extremely simple, I am just trying to log in from an ASP.NET MVC client with this code.

public bool UserLoginBL(string email, string password) { using (var context = new SHADBEntities()) {; var users = context.Users; var query = from user in users where user.Email == email & user.Password == password Go to the complete details ...