Member Junction
    Preparing search index...

    Action that returns a lightweight list of all entities in the system. Returns only entity name, schema name, and description - perfect for discovering what entities exist before drilling into details with Explore Database Schema.

    This action is optimized for research agents that need to:

    • Discover available entities without guessing names
    • Get a quick overview of the data model
    • Find entities by description/purpose
    • Identify correct entity names before detailed exploration

    Features:

    • Uses cached metadata (no database queries)
    • Extremely fast and lightweight
    • Optional schema filtering
    • Optional scope filtering
    • Sorted alphabetically for easy scanning
    // Get all entities
    await runAction({
    ActionName: 'Get Entity List'
    });

    // Get only entities in specific schema
    await runAction({
    ActionName: 'Get Entity List',
    Params: [{
    Name: 'SchemaFilter',
    Value: 'dbo'
    }]
    });

    Hierarchy (View Summary)

    Index

    Constructors

    Methods

    Constructors

    Methods