如何使用Microsoft.Odata.Client中的Odata.Client查询添加默认公司
以下网址适用于邮递员/肥皂,我们将公司添加到uri查询中(?company = CRONUS USA,Inc。)
https://api.businesscentral.dynamics.com/v1.0/..yourtenantid../api/beta/customers?company=CRONUS美国公司
在Visual Studio中,我们需要将公司添加到“基于代码”的查询中。以下代码仅与Dynamics365租户中定义的一家公司一起使用。但是一旦添加了第二家公司,我们就必须在查询中传递该公司。
Dim u As New Uri("https://api.businesscentral.dynamics.com/v1.0/<tenantid>/api/beta/")
Dim bcService As New BusinessCentral.NAV(u)
Dim creds As New NetworkCredential("USER", "Password")
bcService.Credentials = creds
Dim customers As New List(Of BusinessCentral.Customer)
customers = bcService.Customers.ToList
我需要在“代码” Microsoft.OData.Client查询中传递默认公司文件。