RelationshipsExtended 13.0.11

dotnet add package RelationshipsExtended --version 13.0.11
NuGet\Install-Package RelationshipsExtended -Version 13.0.11
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="RelationshipsExtended" Version="13.0.11" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add RelationshipsExtended --version 13.0.11
#r "nuget: RelationshipsExtended, 13.0.11"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install RelationshipsExtended as a Cake Addin
#addin nuget:?package=RelationshipsExtended&version=13.0.11

// Install RelationshipsExtended as a Cake Tool
#tool nuget:?package=RelationshipsExtended&version=13.0.11

RelationshipsExtended

Relationships Extended Module for Kentico This tool extends Kentico by allowing support and management tools for 6 Relationship scenarios:

  • Related Pages (Both Orderable AdHoc Relationships and Unordered Relationships)
  • Node Categories (using CMS.TreeNode)
  • Node Categories (using a Custom Joining Table)
  • Object to Object binding with Ordering
  • Node to Object binding with Ordering
  • Node to Object binding without Ordering

Installation

Admin

  • Open your Kentico Solution and right click on the CMS Project, and select "Manage NuGet Packages..."
  • Search for RelationshipsExtended and select the major version that mathces your Kentico version (ex 10.0.0 = Kentico 10, 11.0.0 = Kentico 11, etc)
  • After your NuGet package finishes installing, run your Keintico site. Ignore the Event Log Error for the RelationshipsExtended ErrorSettingForeignKeys as that always happens on the first start up.
  • Go to System → Restart Application
  • Also go to System → Macros → Signatures and resign your macros.

MVC

If you are using Kentico 12 MVC or Kentico 13 MVC (.Net or .Net Core) you should also install the RelationshipsExtended.MVC.Standard for Kentico 13, or RelationshipsExtendedMVCHelper for Kentico 12 NuGet package.

Lastly hook up RelationshipsExtendedHelper as the implementation for IRelationshipsExtendedHelper.

For MVC.Net Core, add to the Startup.cs's ConfigureServices services.AddSingleton(typeof(IRelationshipExtendedHelper), typeof(RelationshipsExtendedHelper));

For MVC.Net Framework, you will have to use your own IoC, such as AutoFac

// builder is of type ContainerBuilder
builder.RegisterType(typeof(RelationshipsExtendedHelper)).As(typeof(IRelationshipExtendedHelper));

This will provide you with TreeCategory, DocumentQuery/ObjectQuery extensions, and AdHoc relationship support and event hooks that the Admin (Mother) also contain, so any adjustments in code will also work properly with staging and such.

Documentation

If you are new to the tool, you have two options for learning how to use this.

  1. Check out the Demo section, which contains an example project with each scenario and it's configuration. You can include the Demo project on your Admin, and go to Site → Import site or objects on the RelationshipsExtendedDemoModule.13.0.0.zip file to install the Demo module and it's UI elements.
  2. Check out the Wiki page on this GitHub to get a general overview.

Batch Modification

It is possible that during batch adjustments across multiple objects, that transactions can get locked, causing errors. It is recommended in this case to not log the synchronization task during the batch operations, and then manually trigger an update a staging event after if something was changed. Under normaly operations on single items


using(CMSActionContext context = new CMSActionContect() {
   LogSynchronization = false
   }) {
    // Batch operation where multiple related objects are done
   }
   
   if(UpdateWasMade) {
        // Tree node update
        DocumentSynchronizationHelper.LogDocumentChange(new LogMultipleDocumentChangeSettings()
        {
            NodeAliasPath = AssetParent.NodeAliasPath,
            CultureCode = AssetParent.DocumentCulture,
            TaskType = TaskTypeEnum.UpdateDocument,
            Tree = AssetParent.TreeProvider,
            SiteName = AssetParent.NodeSiteName,
            RunAsynchronously = false,
            User = MembershipContext.AuthenticatedUser
        });
        // Object update
        ParentObjectInfoProvider.Set(TheParentObject);
   }

    // In a global event hook
    private void ParentCategories_Insert_Or_Delete_After(object sender, ObjectEventArgs e)
    {
        if (CMSActionContext.CurrentLogSynchronization)
        {
            RelHelper.HandleNodeBindingInsertUpdateDeleteEvent(((ParentCategoryInfo.TypesInfo)e.Object).refNodeID, ParentCategoryInfo.TypesInfo.OBJECT_TYPE);
        }
    }


Query Extensions

The following Extension methods have been added to all ObjectQuery and DocumentQuery, see the project's readme for more info on usage. Except for InRelationWithOrder which is available in all versions, these are only in 13+

  • BindingCategoryCondition: Filter items based on a Binding table that leverages CMS_Categories
  • DocumentCategoryCondition: Filter items based on Document Categories
  • TreeCategoryCondition: Filter items based on Tree Categories
  • BindingCondition: Filter items based on a Binding table
  • InCustomRelationshipWithOrder: Show objects related through a custom binding table with ordering support
  • InRelationWithOrder: Show related Pages with order support (Available in Kentico 10-13)

You can see some samples check this MVC Controller

Contributions, bug fixes and License

Feel free to Fork and submit pull requests to contribute.

You can submit bugs through the issue list and i will get to them as soon as i can, unless you want to fix it yourself and submit a pull request!

This is free to use and modify!

Compatability

Can be used on any Kentico 10.0.52, 11.0.48+, and Kentico 12 SP site (hotfix 29 or above), and Kentico 13.0.0

Product Compatible and additional computed target framework versions.
.NET Framework net is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
13.0.11 183 1/15/2024
13.0.10 105 1/15/2024
13.0.9 1,112 5/5/2023
13.0.8 192 5/5/2023
13.0.7 171 5/3/2023
13.0.6 246 4/21/2023
13.0.5 456 1/25/2023
13.0.4 404 12/19/2022
13.0.3 7,025 11/12/2020
13.0.2 572 11/12/2020
13.0.1 433 11/12/2020
13.0.0 476 11/11/2020
12.29.8 614 4/28/2021
12.29.6 468 11/30/2020
12.29.5 882 9/4/2020
12.29.4 485 8/18/2020
12.29.3 547 7/20/2020
12.29.2 3,084 9/12/2019
12.29.1 590 8/28/2019
12.29.0 621 7/24/2019
12.0.14 842 4/12/2019
12.0.12 603 4/11/2019
12.0.11 632 4/9/2019
12.0.10 623 4/8/2019
12.0.9 624 4/1/2019
12.0.8 598 3/28/2019
11.48.8 386 4/28/2021
11.48.6 476 9/4/2020
11.48.5 482 7/20/2020
11.48.4 524 10/31/2019
11.48.2 572 9/12/2019
11.48.1 580 8/28/2019
11.48.0 553 7/24/2019
11.0.14 620 4/12/2019
11.0.12 643 4/11/2019
11.0.10 615 4/8/2019
11.0.9 619 4/1/2019
11.0.8 602 3/28/2019
10.52.8 349 4/28/2021
10.52.4 492 9/4/2020
10.52.3 494 7/20/2020
10.52.2 542 9/12/2019
10.52.1 544 8/28/2019
10.52.0 571 7/24/2019
10.0.14 612 4/12/2019
10.0.12 620 4/11/2019
10.0.10 614 4/8/2019
10.0.9 634 4/1/2019
10.0.8 604 3/28/2019

Updated to reference KX13.0.13 and above to fix assembly reference issues