Hi DynamicWeb
I am at the moment working on my own Destination provider and have gotten it to work more or less as i want it to.
But my problem at the moment, is that my provider uses the order provider as the source to get the orders, and when i set it up i tell the order provider to only get new orders, but when i run my custom provider, it takes all the orders,
I am grabbing my orders and order lines with this code
Mapping orders = job.Mappings.SingleOrDefault(x => x.SourceTable.Name == "EcomOrders");
Mapping orderLines = job.Mappings.SingleOrDefault(x => x.SourceTable.Name == "EcomOrderLines");
Any idea on what i am doing wrong ?