Entityデータモデルに対してLinqを使用して、以下のような非常に単純なselectステートメントを作成しようとしています
達成しようとしている
"Select * from SAPCostcentre where costcentermanager="mike";
edmx を作成し、新しいクラスを追加して、linq を使用して以下のように DAO を記述しましたが、気に入りません。
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();
}
「タイプ文字列をここに変換できません」という例外がスローされbool
ます「context.CostCentreManager = name」
私のデータベース設計では、costcentermanger
データ型はvarchar
. ここに欠けているものや正しいアプローチを教えてください。