Skip to content

Shorten the name of cmdlets #24

@rezanid

Description

@rezanid

Currently all Cmdlets use the following pattern for naming:

<verb>-Dataverse<noun>

For operations that have long noun part in the name like Get-DataverseRowCount, it can be tedious to type such a long name.

Consider renaming all the existing Cmdlets to the following pattern:

<verb>-Dv<noun>

To continue supporting the current names, old functions can become wrappers to call new functions.

Function Clear-DvTable {
    # Implementation here
}
Function Clear-DataverseTable {
  Clear-DvTable
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions