CrmOrganizationServiceContext.Delete Method (String, Guid)
Applies To: Dynamics CRM 2013
Deletes a record. (Developer Extensions)
Namespace: Microsoft.Xrm.Client
Assembly: Microsoft.Xrm.Client (in Microsoft.Xrm.Client.dll)
Syntax
public void Delete(
string entityName,
Guid id
)
public:
virtual void Delete(
String^ entityName,
Guid id
) sealed
abstract Delete :
entityName:string *
id:Guid -> unit
override Delete :
entityName:string *
id:Guid -> unit
Public 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
CrmOrganizationServiceContext Class
Microsoft.Xrm.Client Namespace
Developer extensions for Microsoft Dynamics CRM 2013
Developer extensions context object model (Dynamics CRM 2013)
Return to top