var dadproductlist = from dgdproduct in dadData.Tables[0].AsEnumerable()
select new DeliveryAdjustmentProduct
{
AdjustmentQuantity = dgdproduct.Field<int>("AdjustedQty"),
AdjustmentType = dgdproduct.Field<char>("AdjustmentType").ToString(),
DeliveredDate = dgdproduct.Field<DateTime>("ExpectedDate"),
ProductCode = dgdproduct.Field<int>("ProductNum").ToString(),
RevisedQuantity = dgdproduct.Field<int>("RevisedOrderQty"),
SupplierId = dgdproduct.Field<int>("SupplierId").ToString(),
TrailerId = "Pradeep"
};
上記のクエリを書いて文字フィールドを取得しましたが、 で失敗しました"Specified Cast Not Valid"
。