Jim Daly

Results 10 issues of Jim Daly

Application throws StackOverflowException when the [BulkDelete Action](https://msdn.microsoft.com/en-us/library/mt491158.aspx) is selected. It will probably do the same for the [FetchXmlToQueryExpression Function](https://msdn.microsoft.com/en-us/library/mt491169.aspx) because it also uses the [QueryExpression ComplexType](https://msdn.microsoft.com/en-us/library/mt491192.aspx). There is something about...

Generate 5000 entities with a combination of related entities. Run the same query with both libraries. Measure the time and browser memory usage. Look at server resources used as well.

Currently to access a formatted value you must pass the name to the entity.getFormattedValues function: ``` javascript account.getFormattedValue("customertypecode") ``` But instead (_or in addition_) there could be an entity.formatted read-only...

enhancement

You are welcome to add issues and comment on existing issues. Currently, I'm using issues to track ideas I have to improve the library.

Pinned

Include helper functions for the various [Web API Query Functions](https://msdn.microsoft.com/en-us/library/mt607843.aspx) . Probably within a container, as to not clutter up the main namespace.

enhancement

Change it to includeNotifications and modify the implementation from this: ``` javascript if (includeFormattedValues) { req.setRequestHeader("Prefer", "odata.include-annotations=\"OData.Community.Display.V1.FormattedValue\""); } ``` to this: ``` javascript if (includeFormattedValues) { req.setRequestHeader("Prefer", "odata.include-annotations=\"*\""); } ```...

enhancement

When generating the library, generate a page of documentation that includes reference documentation which includes the selected items and the core

enhancement

I spent about an hour trying to see which descriptions could be updated using VSCode Copilot Agent mode with this prompt: ``` Please scan all .cs files in the current...

Error messages reflect syntax errors and are returned in the error message. Normally, I'd say this is great, but our customer is concerned with click-jacking attacks & XSS. Seems like...

question
follow up

**Repro** Go here: [Register the service app (msal-node-api)](https://github.com/Azure-Samples/ms-identity-javascript-tutorial/tree/main/3-Authorization-II/1-call-api#register-the-service-app-msal-node-api) and look at instruction 6.i.a: where it says: >1. In the **Redirect URI** section enter the following redirect URI: > a. ``...

untriaged