CachedOrganizationService.Delete Method (String, Guid)
Applies To: Dynamics CRM 2013
Deletes a record. (Developer Extensions)
Namespace: Microsoft.Xrm.Client.Services
Assembly: Microsoft.Xrm.Client (in Microsoft.Xrm.Client.dll)
Syntax
public override void Delete(
string entityName,
Guid id
)
public:
virtual void Delete(
String^ entityName,
Guid id
) override
override Delete :
entityName:string *
id:Guid -> unit
Public Overrides Sub Delete (
entityName As String,
id As Guid
)
Parameters
entityName
Type: System.StringType: String. The logical name of the entity specified in the entityId parameter.
id
Type: System.GuidType: Guid. The ID of the record to delete.
Implements
IOrganizationService.Delete(String, Guid)
Remarks
Extends the core implementation of the IOrganizationService.Delete method.
See Also
CachedOrganizationService Class
Microsoft.Xrm.Client.Services Namespace
Developer extensions for Microsoft Dynamics CRM 2013
Developer extensions context object model (Dynamics CRM 2013)
Return to top