我想使用Lambda表达式在我的C#应用程序中获取CountryName
。当前抛出错误
参数化查询'(@CountryCode varchar(8000))exec GetCountry @CountryCode'需要未提供的参数'@CountryCode'。
请向我建议我要去哪里了。
string CountryName = Loctn().Where(r => r.Country_Code == "AU").Select(y => y.CountryName).ToString(); //throws error