This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#define FDB_API_VERSION 20 | |
#include <stdlib.h> | |
#include <stdio.h> | |
#include <string.h> | |
#include <pthread.h> | |
#include "foundationdb/fdb_c.h" | |
void checkError(fdb_error_t errorNum) | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Collections.Generic; | |
using Microsoft.Crm.Sdk; | |
using Microsoft.Crm.Sdk.Messages; | |
using Microsoft.Xrm.Sdk; | |
using Microsoft.Xrm.Sdk.Query; | |
namespace PluginUtils | |
{ | |
class EntityComparer : IEqualityComparer<Entity> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
USE MSCRM_CONFIG | |
GO | |
-- Dynamics CRM 2015 | |
SELECT NvarCharColumn AS CRM2015LicenseKey | |
FROM ConfigSettingsProperties | |
WHERE ColumnName = 'LicenseKeyV7RTM' | |
-- Dynamics CRM 2013 | |
SELECT NvarCharColumn AS CRM2013LicenseKey |