Skip to content

Commit

Permalink
no message
Browse files Browse the repository at this point in the history
  • Loading branch information
ZooY committed Aug 7, 2018
1 parent d88e65d commit 004fd33
Show file tree
Hide file tree
Showing 67 changed files with 159 additions and 117 deletions.
Binary file modified NuGet/PZone.SDK.XRM.nupkg
Binary file not shown.
2 changes: 1 addition & 1 deletion PZone SDK XRM.shfbproj
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
<Preliminary>False</Preliminary>
<NamingMethod>MemberName</NamingMethod>
<HelpTitle>PZone SDK XRM</HelpTitle>
<CopyrightText>Copyright &amp;#169%3b 2017 Programming Zone</CopyrightText>
<CopyrightText>Copyright &amp;#169%3b 2017-2018 Programming Zone</CopyrightText>
<ContentPlacement>AboveNamespaces</ContentPlacement>
<WarnOnMissingSourceContext>False</WarnOnMissingSourceContext>
<DocumentationSources>
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ PM> Install-Package PZone.SDK.XRM

## All My Dynamics CRM Libs
<ul>
<li><a href="https://github.com/ZooY/PZone.SDK.XRM">PZone SDK XRM</a> Common assembly for Microsoft Dynamics development.</li>
<li><a href="https://github.com/ZooY/PZone.SDK.XRM.Plugins">PZone SDK XRM Plug-ins</a> Common assembly for Microsoft Dynamics CRM Plug-ins development.</li>
<li><a href="https://github.com/ZooY/PZone.SDK.XRM.Workflow">PZone SDK XRM Workflow</a> Common assembly for Microsoft Dynamics CRM Workflow development.</li>
<li><a href="https://github.com/ZooY/PZone.SDK.XRM.Testing">PZone SDK XRM Testing</a> Testing components for Microsoft Dynamics CRM development.</li>
<li><a href="https://zooy.github.io/PZone.SDK.XRM/">PZone SDK XRM</a> Common assembly for Microsoft Dynamics development.</li>
<li><a href="https://zooy.github.io/PZone.SDK.XRM.Plugins/">PZone SDK XRM Plug-ins</a> Common assembly for Microsoft Dynamics CRM Plug-ins development.</li>
<li><a href="https://zooy.github.io/PZone.SDK.XRM.Workflow/">PZone SDK XRM Workflow</a> Common assembly for Microsoft Dynamics CRM Workflow development.</li>
<li><a href="https://zooy.github.io/PZone.SDK.XRM.Testing/">PZone SDK XRM Testing</a> Testing components for Microsoft Dynamics CRM development.</li>
</ul>
21 changes: 21 additions & 0 deletions Source/PZone.Xrm/IOrganizationServiceExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,27 @@ namespace PZone.Xrm
// ReSharper disable once InconsistentNaming
public static class IOrganizationServiceExtensions
{
#region Retrieve


/// <summary>
/// Получение записи по ссылке на нее.
/// </summary>
/// <param name="service">Экземпляр сервиса CRM.</param>
/// <param name="entityRef">Ссылка на сущность.</param>
/// <param name="columnSet">Набор атрибутов сущности.</param>
/// <returns>
/// Метод возвращает одну запись по ссылке на нее.
/// </returns>
public static Entity Retrieve(this IOrganizationService service, EntityReference entityRef, ColumnSet columnSet)
{
return service.Retrieve(entityRef.LogicalName, entityRef.Id, columnSet);
}


#endregion


#region RetrieveMultiple


Expand Down
3 changes: 2 additions & 1 deletion Source/PZone.Xrm/ITracingServiceExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ public static void Trace(this ITracingService service, object obj)
ReferenceLoopHandling = ReferenceLoopHandling.Ignore,
DateFormatHandling = DateFormatHandling.IsoDateFormat,
NullValueHandling = NullValueHandling.Ignore,
Formatting = Formatting.Indented
Formatting = Formatting.Indented,
Error = (s, e) => { e.ErrorContext.Handled = true; }
}));
}
}
Expand Down
4 changes: 2 additions & 2 deletions Source/PZone.Xrm/PZone.Xrm.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -49,13 +49,13 @@
</ItemGroup>
<ItemGroup>
<Reference Include="Microsoft.Crm.Sdk.Proxy, Version=8.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\packages\Microsoft.CrmSdk.CoreAssemblies.8.2.0.1\lib\net45\Microsoft.Crm.Sdk.Proxy.dll</HintPath>
<HintPath>..\packages\Microsoft.CrmSdk.CoreAssemblies.8.2.0.2\lib\net452\Microsoft.Crm.Sdk.Proxy.dll</HintPath>
</Reference>
<Reference Include="Microsoft.IdentityModel, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\packages\Microsoft.IdentityModel.6.1.7600.16394\lib\net35\Microsoft.IdentityModel.dll</HintPath>
</Reference>
<Reference Include="Microsoft.Xrm.Sdk, Version=8.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\packages\Microsoft.CrmSdk.CoreAssemblies.8.2.0.1\lib\net45\Microsoft.Xrm.Sdk.dll</HintPath>
<HintPath>..\packages\Microsoft.CrmSdk.CoreAssemblies.8.2.0.2\lib\net452\Microsoft.Xrm.Sdk.dll</HintPath>
</Reference>
<Reference Include="Newtonsoft.Json, Version=11.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
<HintPath>..\packages\Newtonsoft.Json.11.0.2\lib\net45\Newtonsoft.Json.dll</HintPath>
Expand Down
4 changes: 2 additions & 2 deletions Source/PZone.Xrm/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("8.1.1.1")]
[assembly: AssemblyFileVersion("8.1.1.1")]
[assembly: AssemblyVersion("8.1.2.0")]
[assembly: AssemblyFileVersion("8.1.2.0")]
2 changes: 1 addition & 1 deletion Source/PZone.Xrm/packages.config
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Microsoft.CrmSdk.CoreAssemblies" version="8.2.0.1" targetFramework="net452" />
<package id="Microsoft.CrmSdk.CoreAssemblies" version="8.2.0.2" targetFramework="net452" />
<package id="Microsoft.IdentityModel" version="6.1.7600.16394" targetFramework="net452" />
<package id="Newtonsoft.Json" version="11.0.2" targetFramework="net452" />
</packages>
60 changes: 30 additions & 30 deletions docs/v8/LastBuild.log
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<shfbBuild product="Sandcastle Help File Builder and Tools" version="2018.7.8.0" projectFile="C:\Projects\PZone\CRM\PZone SDK XRM\PZone SDK XRM.shfbproj" started="06.08.2018 12:35:59">
<shfbBuild product="Sandcastle Help File Builder and Tools" version="2018.7.8.0" projectFile="C:\Projects\PZone\CRM\PZone SDK XRM\PZone SDK XRM.shfbproj" started="07.08.2018 17:15:25">
<buildStep step="Initializing">
Finding tools...
The Sandcastle tools are located in &#39;C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\&#39;
Expand Down Expand Up @@ -28,16 +28,16 @@ Copying XML comments files
<buildStep step="GenerateSharedContent">
Generating shared content files (en-US, Английский (США))...
<plugIn name="Lightweight Website Style" behavior="After" priority="1000">
</plugIn> Last step completed in 00:00:00,0194
</plugIn> Last step completed in 00:00:00,0040
</buildStep>
<buildStep step="GenerateApiFilter">
Generating API filter for MRefBuilder...
Last step completed in 00:00:00,0053
Last step completed in 00:00:00,0000
</buildStep>
<buildStep step="GenerateReflectionInfo">
Generating reflection information...
[C:\Program Files (x86)\MSBuild\14.0\bin\amd64\MSBuild.exe - GenerateRefInfo.proj]
‘Ў&#174;аЄ&#160; &#173;&#160;з&#160;в&#160; 06.08.2018 12:36:00.
‘Ў&#174;аЄ&#160; &#173;&#160;з&#160;в&#160; 07.08.2018 17:15:26.
Џа&#174;ҐЄв &quot;C:\Projects\PZone\CRM\PZone SDK XRM\docs\v8\Working\GenerateRefInfo.proj&quot; ў г&#167;&#171;Ґ 1 (жҐ&#171;ҐўлҐ &#174;ЎкҐЄвл Ї&#174; г&#172;&#174;&#171;з&#160;&#173;Ёо).
PrepareForBuild:
&#174;&#167;&#164;&#160;&#173;ЁҐ Є&#160;в&#160;&#171;&#174;Ј&#160; &quot;obj\Debug\&quot;.
Expand All @@ -47,7 +47,7 @@ GenerateRefInfo:
Portions Copyright c 2006-2018, Eric Woodruff, All Rights Reserved.
No source code context base path specified. Source context information is unavailable.
Loaded 1 assemblies for reflection and 1 dependency assemblies.
Wrote information on 1 namespaces, 3 types, and 6 members
Wrote information on 1 namespaces, 3 types, and 7 members
Љ&#174;ЇЁа&#174;ў&#160;&#173;ЁҐ д&#160;&#169;&#171;&#160; Ё&#167; &quot;reflection.org&quot; ў &quot;reflection.all&quot;.
XslTransform (v2018.7.8.0)
Copyright c 2006-2018, Microsoft Corporation, All Rights Reserved.
Expand All @@ -57,13 +57,13 @@ GenerateRefInfo:

‘Ў&#174;аЄ&#160; гбЇҐи&#173;&#174; &#167;&#160;ўҐаиҐ&#173;&#160;.

&#160;ва&#160;зҐ&#173;&#173;&#174;Ґ ўаҐ&#172;п: 00:00:00.61
Last step completed in 00:00:00,7993
&#160;ва&#160;зҐ&#173;&#173;&#174;Ґ ўаҐ&#172;п: 00:00:00.67
Last step completed in 00:00:00,8621
</buildStep>
<buildStep step="TransformReflectionInfo">
Transforming reflection output...
[C:\Program Files (x86)\MSBuild\14.0\bin\amd64\MSBuild.exe - TransformManifest.proj]
‘Ў&#174;аЄ&#160; &#173;&#160;з&#160;в&#160; 06.08.2018 12:36:01.
‘Ў&#174;аЄ&#160; &#173;&#160;з&#160;в&#160; 07.08.2018 17:15:27.
Џа&#174;ҐЄв &quot;C:\Projects\PZone\CRM\PZone SDK XRM\docs\v8\Working\TransformManifest.proj&quot; ў г&#167;&#171;Ґ 1 (жҐ&#171;ҐўлҐ &#174;ЎкҐЄвл Ї&#174; г&#172;&#174;&#171;з&#160;&#173;Ёо).
TransformManifest:
XslTransform (v2018.7.8.0)
Expand All @@ -88,17 +88,17 @@ TransformManifest:

‘Ў&#174;аЄ&#160; гбЇҐи&#173;&#174; &#167;&#160;ўҐаиҐ&#173;&#160;.

&#160;ва&#160;зҐ&#173;&#173;&#174;Ґ ўаҐ&#172;п: 00:00:00.49
Last step completed in 00:00:00,6596
&#160;ва&#160;зҐ&#173;&#173;&#174;Ґ ўаҐ&#172;п: 00:00:00.53
Last step completed in 00:00:00,6962
</buildStep>
<buildStep step="GenerateNamespaceSummaries">
Generating namespace summary information...
Last step completed in 00:00:00,0136
Last step completed in 00:00:00,0025
</buildStep>
<buildStep step="CopyAdditionalContent">
Copying additional content files...
No additional content to copy
Last step completed in 00:00:00,0031
Last step completed in 00:00:00,0000
</buildStep>
<buildStep step="MergeTablesOfContents">
Merging conceptual and additional tables of contents...
Expand All @@ -107,7 +107,7 @@ Merging conceptual and additional tables of contents...
<buildStep step="GenerateIntermediateTableOfContents">
Generating intermediate table of contents file...
[C:\Program Files (x86)\MSBuild\14.0\bin\amd64\MSBuild.exe - GenerateIntermediateTOC.proj]
‘Ў&#174;аЄ&#160; &#173;&#160;з&#160;в&#160; 06.08.2018 12:36:01.
‘Ў&#174;аЄ&#160; &#173;&#160;з&#160;в&#160; 07.08.2018 17:15:28.
Џа&#174;ҐЄв &quot;C:\Projects\PZone\CRM\PZone SDK XRM\docs\v8\Working\GenerateIntermediateTOC.proj&quot; ў г&#167;&#171;Ґ 1 (жҐ&#171;ҐўлҐ &#174;ЎкҐЄвл Ї&#174; г&#172;&#174;&#171;з&#160;&#173;Ёо).
GenerateIntermediateTOC:
XslTransform (v2018.7.8.0)
Expand All @@ -118,43 +118,43 @@ GenerateIntermediateTOC:

‘Ў&#174;аЄ&#160; гбЇҐи&#173;&#174; &#167;&#160;ўҐаиҐ&#173;&#160;.

&#160;ва&#160;зҐ&#173;&#173;&#174;Ґ ўаҐ&#172;п: 00:00:00.13
&#160;ва&#160;зҐ&#173;&#173;&#174;Ґ ўаҐ&#172;п: 00:00:00.14
Generating conceptual content intermediate TOC file...
Last step completed in 00:00:00,3395
Last step completed in 00:00:00,3215
</buildStep>
<buildStep step="CreateBuildAssemblerConfigs">
Creating Sandcastle configuration files...
sandcastle.config
Last step completed in 00:00:00,1393
Last step completed in 00:00:00,1161
</buildStep>
<buildStep step="MergeCustomConfigs">
Merging custom build component configurations
C:\Projects\PZone\CRM\PZone SDK XRM\docs\v8\Working\sandcastle.config
Updating reference topic configurations.
Replacing default configuration for &#39;Code Block Component&#39; with the custom configuration
No conceptual content. Removing conceptual content components.
Last step completed in 00:00:00,0108
Last step completed in 00:00:00,0030
</buildStep>
<buildStep step="BuildTopics">
Building help topics...
[C:\Program Files (x86)\MSBuild\14.0\bin\amd64\MSBuild.exe - BuildTopics.proj]
‘Ў&#174;аЄ&#160; &#173;&#160;з&#160;в&#160; 06.08.2018 12:36:02.
‘Ў&#174;аЄ&#160; &#173;&#160;з&#160;в&#160; 07.08.2018 17:15:28.
Џа&#174;ҐЄв &quot;C:\Projects\PZone\CRM\PZone SDK XRM\docs\v8\Working\BuildTopics.proj&quot; ў г&#167;&#171;Ґ 1 (жҐ&#171;ҐўлҐ &#174;ЎкҐЄвл Ї&#174; г&#172;&#174;&#171;з&#160;&#173;Ёо).
BuildTopics:
BuildAssembler (v2018.7.8.0)
Copyright c 2006-2018, Microsoft Corporation, All Rights Reserved.
Portions Copyright c 2006-2018, Eric Woodruff, All Rights Reserved.
Loading configuration...
Processing topics...
Processed 15 topic(s)
Processed 16 topic(s)
CopyFromIndexComponent: &quot;reflection&quot; in-memory cache entries used: 2 of 15.
CopyFromIndexComponent: &quot;comments&quot; in-memory cache entries used: 2 of 30.
‘Ў&#174;аЄ&#160; Їа&#174;ҐЄв&#160; &quot;C:\Projects\PZone\CRM\PZone SDK XRM\docs\v8\Working\BuildTopics.proj&quot; &#167;&#160;ўҐаиҐ&#173;&#160; (жҐ&#171;ҐўлҐ &#174;ЎкҐЄвл Ї&#174; г&#172;&#174;&#171;з&#160;&#173;Ёо).

‘Ў&#174;аЄ&#160; гбЇҐи&#173;&#174; &#167;&#160;ўҐаиҐ&#173;&#160;.

&#160;ва&#160;зҐ&#173;&#173;&#174;Ґ ўаҐ&#172;п: 00:00:06.60
Last step completed in 00:00:06,8411
&#160;ва&#160;зҐ&#173;&#173;&#174;Ґ ўаҐ&#172;п: 00:00:07.31
Last step completed in 00:00:07,6316
</buildStep>
<buildStep step="CombiningIntermediateTocFiles">
Combining conceptual and API intermediate TOC files...
Expand All @@ -170,11 +170,11 @@ E-Mail: [email protected]
Using LCID &#39;1033&#39;, code page &#39;65001&#39;, encoding charset &#39;UTF-8&#39;.

Processing website files in C:\Projects\PZone\CRM\PZone SDK XRM\docs\v8\Working\Output\Website
Processed 15 HTML files
Processed 16 HTML files
Sorting keywords and generating See Also indices
Saving website keyword index to C:\Projects\PZone\CRM\PZone SDK XRM\docs\v8\Working\WebKI.xml
Saving website table of contents to C:\Projects\PZone\CRM\PZone SDK XRM\docs\v8\Working\WebTOC.xml
Last step completed in 00:00:00,2734
Last step completed in 00:00:00,3362
</buildStep>
<buildStep step="CopyStandardHelpContent">
Copying standard help content...
Expand Down Expand Up @@ -256,32 +256,32 @@ C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\PresentationStyle
C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\PresentationStyles\VS2013\Web\scripts\branding-Website.js -&gt; C:\Projects\PZone\CRM\PZone SDK XRM\docs\v8\Working\Output\Website\scripts\branding-Website.js
C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\PresentationStyles\VS2013\Web\scripts\clipboard.min.js -&gt; C:\Projects\PZone\CRM\PZone SDK XRM\docs\v8\Working\Output\Website\scripts\clipboard.min.js
C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\PresentationStyles\VS2013\Web\scripts\jquery-1.11.0.min.js -&gt; C:\Projects\PZone\CRM\PZone SDK XRM\docs\v8\Working\Output\Website\scripts\jquery-1.11.0.min.js
Last step completed in 00:00:00,0665
Last step completed in 00:00:00,1002
</buildStep>
<buildStep step="GenerateHelpFormatTableOfContents">
Generating website table of contents file...
Last step completed in 00:00:00,0011
Last step completed in 00:00:00,0000
</buildStep>
<buildStep step="GenerateFullTextIndex">
Generating full-text index for the website...

<plugIn name="Lightweight Website Style" behavior="After" priority="1000">
Adding lightweight search and TOC elements to each topic...
</plugIn> Last step completed in 00:00:00,0910
</plugIn> Last step completed in 00:00:00,0842
</buildStep>
<buildStep step="CopyingWebsiteFiles">
Copying website files to output folder...

Copied 143 files for the website content
Last step completed in 00:00:00,0898
Copied 144 files for the website content
Last step completed in 00:00:00,1353
</buildStep>
<buildStep step="CleanIntermediates">
Removing intermediate files...
Last step completed in 00:00:00,0229
Last step completed in 00:00:00,0372
</buildStep>
<buildStep step="Completed">

Build completed successfully at 06.08.2018 12:36:09. Total time: 00:00:10,4149
Build completed successfully at 07.08.2018 17:15:36. Total time: 00:00:11,4119

</buildStep>
</shfbBuild>
2 changes: 2 additions & 0 deletions docs/v8/WebKI.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
</HelpKINode>
<HelpKINode Title="IOrganizationServiceExtensions.Execute(Of TResponse) method" Url="html/M_PZone_Xrm_IOrganizationServiceExtensions_Execute__1.htm" />
<HelpKINode Title="IOrganizationServiceExtensions.Execute&lt;TResponse&gt; method" Url="html/M_PZone_Xrm_IOrganizationServiceExtensions_Execute__1.htm" />
<HelpKINode Title="IOrganizationServiceExtensions.Retrieve method" Url="html/M_PZone_Xrm_IOrganizationServiceExtensions_Retrieve.htm" />
<HelpKINode Title="IOrganizationServiceExtensions.RetrieveMultiple method" Url="html/M_PZone_Xrm_IOrganizationServiceExtensions_RetrieveMultiple.htm" />
<HelpKINode Title="ITracingServiceExtensions class">
<HelpKINode Title="ITracingServiceExtensions Class" Url="html/T_PZone_Xrm_ITracingServiceExtensions.htm" />
Expand All @@ -25,6 +26,7 @@
<HelpKINode Title="PZone.Xrm.EntityExtensions class" Url="html/T_PZone_Xrm_EntityExtensions.htm" />
<HelpKINode Title="PZone.Xrm.IOrganizationServiceExtensions class" Url="html/T_PZone_Xrm_IOrganizationServiceExtensions.htm" />
<HelpKINode Title="PZone.Xrm.ITracingServiceExtensions class" Url="html/T_PZone_Xrm_ITracingServiceExtensions.htm" />
<HelpKINode Title="Retrieve method" Url="html/M_PZone_Xrm_IOrganizationServiceExtensions_Retrieve.htm" />
<HelpKINode Title="RetrieveMultiple method" Url="html/M_PZone_Xrm_IOrganizationServiceExtensions_RetrieveMultiple.htm" />
<HelpKINode Title="ToCleannedEntity method" Url="html/M_PZone_Xrm_EntityExtensions_ToCleannedEntity.htm" />
<HelpKINode Title="Trace method" Url="html/Overload_PZone_Xrm_ITracingServiceExtensions_Trace.htm" />
Expand Down
Loading

0 comments on commit 004fd33

Please sign in to comment.