James May

Results 32 comments of James May

Drive by, but I'm assuming: This is the article that states that Subscription edition is supported -> https://docs.microsoft.com/en-us/sharepoint/security-for-sharepoint-server/create-web-applications-that-use-classic-mode-authentication And This is the "features removed" page stating it's not supported ->...

1. Ahh the docs are manually written now instead of generated by attribute? I'll take a look next week 2. Yes the changes are designed to have no behavior difference...

The changes to `PnPAdminCmdlet` are designed to have no effect unless the cmdlet overrides `ImplicitAdminContextSwitch` and returns `true`, in which case it needs to call `SwitchToAdminClientContext()` if it needs to...

Perhaps try setting [UseWebApi](https://docs.microsoft.com/en-us/dotnet/api/microsoft.powerplatform.dataverse.client.serviceclient.usewebapi?view=dataverse-sdk-latest) to 'false' as a workaround?

This can also occur when using `Ensure-PnPFolder`, workaround is the same.

@amarzavery I think you missed a "t" in your URL ;-)

This still appears to be an issue. eg. the service returns the error code `Request_ResourceNotFound` not `Microsoft.Graph.GraphErrorCode.ItemNotFound` ("`ItemNotFound`"). > Errors should pass through. We will not add new error mappings,...

We're working on it! But this was a real issue that a colleague experienced, that's only going to get more common as other products update. Given that v1 is still...

[MySQL](https://dev.mysql.com/doc/refman/5.7/en/insert-on-duplicate.html): `ON DUPLICATE KEY UPDATE` [Sqlite](https://www.sqlite.org/lang_UPSERT.html): uses a special `ON CONFLICT` clause, added in version 3.24.0 (2018-06-04). [Postgres](https://stackoverflow.com/a/17267423/45583): supports `ON CONFLICT` and `ON DUPLICATE KEY UPDATE` which are different. [Firebird](https://firebirdsql.org/refdocs/langrefupd21-update-or-insert.html):...