Skip to content

Add OCM support #27

@perandersson

Description

@perandersson

Add support for OCM classes:

First create an object content manager with at least these methods:

public interface IObjectContentManager
{
   void insert(object entity);

   void remove(object entity);
}

Secondly - create attributes used on the class to specify which fields to expose to the content repository tree:

[Node]
public class MyObject
{
   [NodeValue]
   public string Value1 { get; set; }

   [NodeValue]
   [NodePath]
   public string Path { get; set; }
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions