これはソース コードです (私は CodeSmith Tools を使用しています):
public static int Delete(this System.Data.Linq.Table<EAccredidation.Data.Programs> table, int pKProgramID)
{
return table.Delete(p => p.PKProgramID == pKProgramID);
}
このエラーが発生しています:
デリゲート型 C:\Projects\New\EAccreditation.Data\Queries\ProgramsExtensions.Generated.cs ではないため、ラムダ式を 'int' 型に変換できません
どうすれば修正できますか?