| MongoDBUtilityDelete Method (String) |
Deletes the specified id and it's associated document from the default colleciton.
Namespace:
Galactic.NoSql.MongoDB
Assembly:
Galactic.NoSql.MongoDB (in Galactic.NoSql.MongoDB.dll) Version: 1.3.0.499 (1.3.0.499)
Syntax public override bool Delete(
string id
)
Public Overrides Function Delete (
id As String
) As Boolean
public:
virtual bool Delete(
String^ id
) override
abstract Delete :
id : string -> bool
override Delete :
id : string -> bool
Parameters
- id
- Type: SystemString
The name of the id to delete.
Return Value
Type:
BooleanTrue if the id/document was deleted, false if there was an error or it could not otherwise be deleted.
See Also