Currently all Cmdlets use the following pattern for naming:
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:
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
}
Currently all Cmdlets use the following pattern for naming:
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:
To continue supporting the current names, old functions can become wrappers to call new functions.