for my submit order in myshoppingcart.cs i am getting an error with the catch statement, when i take it out it works fine, what should i do ,does this impact on the funtionality
catch (Exception exp)
{
throw new Exception("ERROR: Unable to Submit Order - " + exp.Message.ToString(),
exp);
}
Exception was unhandled by user code
ERROR: Unable to Submit Order - The method or operation is not implemented.
ALSO ERROR: Unable to Load Popular Items - Data binding directly to a store query (DbSet, DbQuery, DbSqlQuery) is not supported. Instead populate a DbSet with data, for example by calling Load on the DbSet, and then bind to local data. For WPF bind to DbSet.Local.
For WinForms bind to DbSet.Local.ToBindingList(). after getting this error when i am using the popular items item control, could anybody help me please ...
Go to the complete details ...