-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #58 from DynamicsValue/2x-dev
Push to main
- Loading branch information
Showing
94 changed files
with
5,810 additions
and
1,914 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
<wpf:ResourceDictionary xml:space="preserve" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:s="clr-namespace:System;assembly=mscorlib" xmlns:ss="urn:shemas-jetbrains-com:settings-storage-xaml" xmlns:wpf="http://schemas.microsoft.com/winfx/2006/xaml/presentation"> | ||
<s:Boolean x:Key="/Default/UserDictionary/Words/=accountid/@EntryIndexedValue">True</s:Boolean> | ||
<s:Boolean x:Key="/Default/UserDictionary/Words/=modifiedby/@EntryIndexedValue">True</s:Boolean> | ||
<s:Boolean x:Key="/Default/UserDictionary/Words/=modifiedon/@EntryIndexedValue">True</s:Boolean> | ||
<s:Boolean x:Key="/Default/UserDictionary/Words/=postoperation/@EntryIndexedValue">True</s:Boolean> | ||
<s:Boolean x:Key="/Default/UserDictionary/Words/=preoperation/@EntryIndexedValue">True</s:Boolean></wpf:ResourceDictionary> |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
namespace FakeXrmEasy.Plugins | ||
{ | ||
internal static class EntityLogicalNameConstants | ||
{ | ||
internal const string AppNotification = "appnotification"; | ||
internal const string BackgroundOperation = "backgroundoperation"; | ||
internal const string CardStateItem = "cardstateitem"; | ||
internal const string ComponentVersionNrdDataSource = "componentversionnrddatasource"; | ||
internal const string ElasticFileAttachment = "elasticfileattachment"; | ||
internal const string EventExpanderBreadcrumb = "eventexpanderbreadcrumb"; | ||
internal const string FlowLog = "flowlog"; | ||
internal const string FlowRun = "flowrun"; | ||
internal const string MsDynTimelinePin = "msdyn_timelinepin"; | ||
internal const string NlsqRegistration = "nlsqregistration"; | ||
internal const string None = "none"; | ||
internal const string PowerPagesLog = "powerpageslog"; | ||
internal const string RecentlyUsed = "recentlyused"; | ||
internal const string SearchResultsCache = "searchresultscache"; | ||
internal const string SearchTelemetry = "searchtelemetry"; | ||
internal const string SharedWorkspaceAccessToken = "sharedworkspaceaccesstoken"; | ||
internal const string SharedWorkspaceNr = "sharedworkspacenr"; | ||
|
||
internal const string Account = "account"; | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
21 changes: 21 additions & 0 deletions
21
src/FakeXrmEasy.Plugins/Extensions/GetAssociatedNonBulkRequestNameException.cs
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
using System; | ||
using Microsoft.Xrm.Sdk; | ||
|
||
namespace FakeXrmEasy.Plugins.Extensions | ||
{ | ||
/// <summary> | ||
/// Exception thrown when a method was invoked on an organization request that is not a bulk operation | ||
/// </summary> | ||
public class GetAssociatedNonBulkRequestNameException: Exception | ||
{ | ||
/// <summary> | ||
/// Default constructor | ||
/// </summary> | ||
/// <param name="request"></param> | ||
public GetAssociatedNonBulkRequestNameException(OrganizationRequest request): | ||
base($"GetAssociatedNonBulkRequestName can not be called on a non-bulk organization request '{request.RequestName}'") | ||
{ | ||
|
||
} | ||
} | ||
} |
15 changes: 15 additions & 0 deletions
15
src/FakeXrmEasy.Plugins/Extensions/InvalidBulkOperationExtensionException.cs
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
using System; | ||
|
||
namespace FakeXrmEasy.Plugins.Extensions | ||
{ | ||
/// <summary> | ||
/// Exception raised when a bulk request is converted to a non bulk request but the original request wasn't a valid bulk request | ||
/// </summary> | ||
public class InvalidBulkOperationExtensionException: Exception | ||
{ | ||
internal InvalidBulkOperationExtensionException() : base("Bulk Operations Organization Request extensions are not supported on non-bulk OrganizationRequests") | ||
{ | ||
|
||
} | ||
} | ||
} |
Oops, something went wrong.