Am trying to write a very simple select statement like below using Linq against Entity data model
trying to achieve
"Select * from SAPCostcentre where costcentermanager="mike";
Created my edmx and add a new class to write my DAO like below using linq but it doesn't like it.
public void ResourceCollection(string CostCenter)
{
string name = "Mike";
var context = new ScheduALLDAL.SAPCostCentre();
var query = from c in context.CostCentreManager where context.CostCentreManager = name select c;
var costcenter = query.ToList();
}
It throws exception "can not convert type string to bool here "context.CostCentreManager = name"
in my db design costcentermanger data type is varchar. Please some one throw me a light what am missing here or the right approach .

