| NoSqlUtilityGet Method |
Gets a document from the database with the specified id.
Namespace:
Galactic.NoSql
Assembly:
Galactic.NoSql (in Galactic.NoSql.dll) Version: 1.3.0.499 (1.3.0.499)
Syntax public abstract Object Get(
string id
)
Public MustOverride Function Get (
id As String
) As Object
public:
virtual Object^ Get(
String^ id
) abstract
abstract Get :
id : string -> Object
Parameters
- id
- Type: SystemString
The id of the document to retrieve.
Return Value
Type:
ObjectThe document with the specified id, or null if there was an error, or the id does not exist.
See Also