| DataObjectTypeControllerGetDataObjectTypeIdCheck Method |
Returns the integer Id of a data object type with the UID provided in uidStr.
The method doesn't consider the security model.
The method doesn't consider whether the data object is marked as deleted.
Namespace:
Omada.OE.AppLogic
Assembly:
Omada.OE.AppLogic (in Omada.OE.AppLogic.dll) Version: 15.0.0.0
Syntaxpublic static int GetDataObjectTypeIdCheck(
string uidStr,
SqlConnection dbConnection,
SqlTransaction dbTransaction
)
Parameters
- uidStr
- Type: SystemString
Uid string of the data object type.
Must be non-null and have a length greater than zero.
- dbConnection
- Type: System.Data.SqlClientSqlConnection
- dbTransaction
- Type: System.Data.SqlClientSqlTransaction
Return Value
Type:
Int32
Returns the Id of the specified data object type.
If the specified data object doesn't exist throws an ObjectNotFoundException.
See Also