This is the place to report bugs and get support. When posting in this forum, please always provide as much detail as possible.
Please do not report problems with a custom build or custom code in this forum. If you are producing your own build from the source code and have problems or questions, ask in the developer forum, do not report it as a bug.
When posting in this forum, please try to provide as many relevant details as possible. Particularly the following:
Hey Joe, in DBOrder.GetProducts, the paramater input and DB parameter are different
public static IDataReader GetProducts(Guid orderGuid) { SqlParameterHelper sph = new SqlParameterHelper(GetConnectionString(), "ws_OrderOfferProduct_SelectByOrder", 1); sph.DefineSqlParameter("@Guid", SqlDbType.UniqueIdentifier, ParameterDirection.Input, orderGuid); return sph.ExecuteReader();
}
Class has @Guid, SP has @OrderGuid
Hi David,
Thanks for the bug report and fix. I will have this fixed in svn trunk by later tonight.
Best,
Joe
I noticed it was in Get as well as GetProducts. You may want to check both.