getFuncName function
Implementation
String getFuncName(TableCollectionBase tableCollection, bool ifExist, SqfEntityTableBase _table) {
String funcName = _table.tableName == tableCollection.childTable.tableName ? toPluralName(tableCollection.childTableField.fieldName!) : toPluralName(tableCollection.childTable.modelName!);
return funcName += ifExist ? 'By${tableCollection.childTableField.fieldName}' : '';
}