TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
zeeshan akram
1.4k
325
18k
local variable anonymous type how to resolve this issue.
Mar 2 2020 2:40 AM
Any Expert can resolve this problem.
public
class
productviewModel
{
public
Product listProducts {
get
;
set
; }
public
List<ProductDetail> listProductDetails {
get
;
set
; }
}
function
public
ProductViewModel GetProductByID(
int
ID)
{
ProductViewModel listprod =
new
ProductViewModel();
try
{
var productsl = (from p
in
_db.Products
where p.ProductID == ID
select
new
{
p.PName,
p.PDescription,
p.Model,
p.Condition,
p.UnitPrice,
p.ManificturedPrice,
p.Discount,
p.UnitWeight,
p.UnitInStock
}).FirstOrDefault();
var productD = (from pd
in
_db.ProductDetails
join b
in
_db.Products on pd.ProductID equals b.ProductID
where pd.ProductID == ID
select
new
{
pd.ProductID,
pd.OS,
pd.ProcessorType,
pd.RAM,
pd.ScreenSize,
pd.TouchScreen,
pd.BatteryLife,
pd.Camera
}).ToList();
listprod.listProducts =
productsl
;
listprod.listProductDetails =
productD;
return
listprod;
}
catch
(Exception)
{
throw
;
}
}
Error
productsl
productD
Reply
Answers (
2
)
Best Template for Register,video upload,user login,register
display fin year in x and sales in y-axis