Merge pull request #1830 from strongloop/deprecated-idcol
mark idColumnName as deprecated
This commit is contained in:
commit
df1c8dc00e
|
@ -2097,7 +2097,13 @@ DataSource.prototype.columnNames = function(modelName) {
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Find the ID column name
|
* @deprecated
|
||||||
|
* Function to get the id column name of the target model
|
||||||
|
*
|
||||||
|
* For SQL connectors, use `SqlConnector.prototype.column(ModelDefinition.prototype.idName())`.
|
||||||
|
* For NoSQL connectors, use `Connector.prototype.idMapping(ModelDefinition.prototype.idName())`
|
||||||
|
* instead.
|
||||||
|
*
|
||||||
* @param {String} modelName The model name
|
* @param {String} modelName The model name
|
||||||
* @returns {String} columnName for ID
|
* @returns {String} columnName for ID
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue