Skip to content

Add OCM support #27

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; }
}

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

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