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 ...