我有以下模型 产品详细信息.cs
public class ProductDetails
{
public string ProductName { get; set; }
public string ProductDescription { get; set; }
public string ProductCodeID { get; set; }
public string CategoryName { get; set; }
public List<ProductDetails> lstProductDetails { get; set; }
}
需要用我从数据库获得的查询结果填充这个模型类
这就是我尝试过的..
var results = from a in db.ProductInfoes where productCodeID.Equals(productCodeID)
select new ProductDetails
{
ProductName = a.Product_Name.ToString(),
ProductCategoryID= a.Category_ID.ToString(),
ProductDescription = a.Product_Description.ToString()
};
使用查询结果更新模型类的最佳方法是什么?
慕的地8271018
DIEA
素胚勾勒不出你
相关分类