I have the following error message:
\'System.Collections.Generic.Dictionary\' does not contain a definition for \'biff\' and no extensi
You need to access the Value of the Dictionary for a given key. Something along these lines.
foreach(var item in dbContext.DBView) { foreach(var key in cart.Keys) { cart[key].biff = item.biff; } }