Click here to Skip to main content
15,890,506 members

This is a classic example of why the var type is dangerous. The compiler cannot make a guess as to what type should be assigned to productEntity. Use properly typed variables so the compiler can make better evaluations of what you are trying to do.

Also, in future, please copy and paste both the code and the error message into your question rather than linking to a picture elsewhere.
 
Share this answer
 
Hello
The following comiler error related to the fact that you are trying to pass a Anonymous
Type to a function that expect ProductEntity Type, I think that the best solution for you will be to crate a Product type and not Anonymous type inside the GetData
function
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900