XrmDefinitelyTyped
XrmDefinitelyTyped copied to clipboard
Tool to generate TypeScript declaration files for Dynamics 365/CDS client-side coding.
**Describe the bug** Setting a date only datetime-field through `XrmQuery` is not directly possible without formatting the date to a `"YYYY-MM-DD"` format and casting to `any` **To Reproduce** 1. add...
**Describe the bug** If the config file is placed in a different folder than the exe, the useConfig flag doesn't work. Also, is the path relative to the EXE? Not...
I have the folowing code: ``` const bookableResourceBookingList = await XrmQuery.retrieveMultiple(x => x.bookableresourcebookings) .expand(x => x.BookingStatus, x => [x.status]) .select(x => [x.bookableresourcebookingid]) .filter(x => Filter.equals(x.resource_guid, Filter.makeGuid(request.bookableResourceId))) .promise(); return bookableResourceBookingList.length; ```...
I am currently migrating my TS files to use XDT. For some reason, the generation process does not manage fields which are placed in the footer of the form ('statecode'...
**Is your feature request related to a problem? Please describe.** When expanding on entities most of the times I already have the necessary information in the current request, so an...
Hi, When having a XrmQuery with Filter.$in I get this error: [object Error]: {description: "Object doesn't support property or method '$in'", message: "Object doesn't support property or method '$in'", number:...
Hi, I'm trying to install the Nuget package in a .Net Core 3.0 project. But the content of the package is not copied to the project directory. It's working with...
Would it be alot of work to support batch requests as describred [here](https://docs.microsoft.com/en-us/powerapps/developer/common-data-service/webapi/execute-batch-operations-using-web-api)? Something like xrmQuery.executeBatch(requests: xrmRequests[])? Would be a nice feature to add.
**Is your feature request related to a problem? Please describe.** Sometimes I need to make a query in which I have to filter on the properties of the associated entity,...
your own example does not work: XrmQuery.retrieveMultiple(x => x.accounts) // Tells XrmQuery to retrieve accounts .select(x => [x.accountnumber]) // Select which attributes to retrieve, in this case just accountnumber .filter(x...