How to fetch only the modified and deleted records from the Quickbook using QBFC COM component in c#.

有帮助吗?

解决方案

Each individual entity type has it's own modified date filter. For example, the CustomerQuery has the ORCustomerListQuery.CustomerListFilter.FromModifiedDate and ORCustomerListQuery.CustomerListFilter.ToModifiedDate. You'll find this pattern in the query message for every entity type and every transaction type.

For deleted records use the ListDeletedQuery for entities and TxnDeletedQuery for transactions.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top