linq を使用してデータベースからレコードを取得しようとしていますが、レコードが返されません
これは非常に基本的な SQL ステートメントです select * where productid ='12553'
ただし、次のコードは結果を返しません。お知らせ下さい。thxあなた
private static IEnumerable<ProductModel> GetAllProduct(string productId)
{
using (var dc = new TestEntities())
{
var result = (from a in dc.Products
where a.productid == productId
select new ProductModel
{
ProductId = a.productid,
Name = a.ProductName
});
return result.Distinct().ToList();
}
}