1

IDS は、StartCreatedTMS/EndCreatedTMS によるクエリを受け入れて、データ サービスではなく、QuickBooks のみで変更されたオブジェクトを取得します。

ただし、IPP .NET Dev Kit は CDCAsOf プロパティのみを公開しているようです。何か不足していますか、または .NET Dev Kit を介して QB デスクトップの StartCreatedTMS でクエリを実行する方法はありますか?

4

1 に答える 1

3
Intuit.Ipp.Data.Qbd.CustomerQuery customerQuery = new Intuit.Ipp.Data.Qbd.CustomerQuery();
customerQuery.ItemsElementName = new ItemsChoiceType4[] { ItemsChoiceType4.StartCreatedTMS, ItemsChoiceType4.EndCreatedTMS };
customerQuery.Items = new object[] { new DateTime(2012, 01, 01), new DateTime(2013, 01, 01) };
List<Intuit.Ipp.Data.Qbd.Customer> customersList = customerQuery.ExecuteQuery<Intuit.Ipp.Data.Qbd.Customer>(context).ToList();
于 2013-02-27T20:38:26.010 に答える