PrimaryKey example
public class InventoryItem : IBqlTable | |
{ | |
public class PK : PrimaryKeyOf<InventoryItem>.By<inventoryID> | |
{ | |
public static InventoryItem Find(PXGraph graph, int? inventoryID) => | |
FindBy(graph, inventoryID); | |
} | |
public abstract class inventoryID : IBqlField { } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment