Let us take a look at a Code Nanite - GetPrimaryKey that returns the primary key in a passed table. These are the major .cs files needed for a Code Nanite DLL: Main Class - GetPrimaryKey.cs Functions - GetPrimaryKey.Functions.cs How it works ...
This class is the entry point for your Code Nanite. using System.Collections.Generic; using System.ComponentModel.Composition; using ZeraSystems.CodeStencil.Contracts; namespace ZeraSystems.CodeNanite.Schema { [Export(typeof(ICodeStencilCodeNani ...
This file - GetPrimaryKey.Functions.cs is the only place you are expected to add your code. The code you add ( in green) updates the Output property which is sent back to CodeStencil. GetPrimaryKey.Functions.cs: using ZeraSystems.CodeStencil.Contr ...