Clinton Bale
Clinton Bale
As best practice, I've removed the compiled binary from the project, users who need the compiled binary will need to compile the project. Perhaps add this project to NuGet? Also...
Hoping support for [MergeRequest ](https://learn.microsoft.com/en-us/dotnet/api/microsoft.crm.sdk.messages.mergerequest?view=dataverse-sdk-latest) can be added, so the SQL4CDS tool can initiate bulk merges based on conditions. Syntax perhaps looking something like this: ```tsql DECLARE @contact AS EntityReference...
The following query to join the `systemuser` table between two environments fails: ```sql select PROD_user.systemuserid, DEV_user.systemuserid from [PROD CONNECTION].dbo.systemuser PROD_user join [DEV CONNECTION].dbo.systemuser DEV_user ON DEV_user.domainname = PROD_user.domainname ``` With...
Was playing around with querying the audit table and ended up running into an error, I've narrowed it down to using distinct on the `audit` table. Any of the following...