// Delete the attribute group with the specified attribute group id. private static void DeleteAttributeGroup(Guid attributeGroupId) { try { // Create the request object for attribute group deletion. MetadataDeleteRequest deleteRequest = new MetadataDeleteRequest(); deleteRequest.Metadata = new Metadata(); deleteRequest.Metadata.AttributeGroups = new System.Collections.ObjectModel.Collection <AttributeGroup> { }; AttributeGroup anAttributeGroup = new AttributeGroup(); // Set attribute group id. anAttributeGroup.Identifier = new MemberTypeContextIdentifier { Id = attributeGroupId }; deleteRequest.Metadata.AttributeGroups.Add(anAttributeGroup); // Delete the specified attribute group. MetadataDeleteResponse deleteResponse = clientProxy.MetadataDelete(deleteRequest); HandleOperationErrors(deleteResponse.OperationResult); } catch (Exception ex) { Console.WriteLine("Error: {0}", ex); } }
// Delete the entity with the specified entity id. private static void DeleteEntity(Guid entityId) { try { // Create the request object for entity deletion. MetadataDeleteRequest deleteRequest = new MetadataDeleteRequest(); deleteRequest.Metadata = new Metadata(); deleteRequest.Metadata.Entities = new System.Collections.ObjectModel.Collection <Entity> { }; Entity anEntity = new Entity(); anEntity.Identifier = new ModelContextIdentifier { Id = entityId }; deleteRequest.Metadata.Entities.Add(anEntity); // Delete the specified entity MetadataDeleteResponse deleteResponse = clientProxy.MetadataDelete(deleteRequest); HandleOperationErrors(deleteResponse.OperationResult); } catch (Exception ex) { Console.WriteLine("Error: {0}", ex); } }
// Delete the model with the specified model id. private static void DeleteModel(Guid modelId) { try { // Create the request object for model deletion. MetadataDeleteRequest deleteRequest = new MetadataDeleteRequest(); deleteRequest.Metadata = new Metadata(); deleteRequest.Metadata.Models = new System.Collections.ObjectModel.Collection <Model> { }; Model newModel = new Model(); newModel.Identifier = new Identifier { Id = modelId }; deleteRequest.Metadata.Models.Add(newModel); // Delete the specified model MetadataDeleteResponse deleteResponse = clientProxy.MetadataDelete(deleteRequest); HandleOperationErrors(deleteResponse.OperationResult); } catch (Exception ex) { Console.WriteLine("Error: {0}", ex); } }
public BasicResponse DeleteMetadata(MetadataDeleteRequest metadatarequest) { _Repository.DeleteMetadata(metadatarequest.Id); var metadataresponse = new BasicResponse(); return(metadataresponse); }
private static void DeleteModel(Identifier modelId) { MetadataDeleteRequest deleteRequest = new MetadataDeleteRequest { Metadata = new Metadata { Models = new Collection <Model> { new Model { Identifier = modelId } } } }; MetadataDeleteResponse deleteResponse = clientProxy.MetadataDelete(deleteRequest); HandleOperationErrors(deleteResponse.OperationResult); }
// Delete the model with the specified model id. private static void DeleteModel(Guid modelId) { try { // Create the request object for model deletion. MetadataDeleteRequest deleteRequest = new MetadataDeleteRequest(); deleteRequest.Metadata = new Metadata(); deleteRequest.Metadata.Models = new System.Collections.ObjectModel.Collection<Model> { }; Model newModel = new Model(); newModel.Identifier = new Identifier { Id = modelId }; deleteRequest.Metadata.Models.Add(newModel); // Delete the specified model MetadataDeleteResponse deleteResponse = clientProxy.MetadataDelete(deleteRequest); HandleOperationErrors(deleteResponse.OperationResult); } catch (Exception ex) { Console.WriteLine("Error: {0}", ex); } }
// Delete the entity with the specified entity id. private static void DeleteEntity(Guid entityId) { try { // Create the request object for entity deletion. MetadataDeleteRequest deleteRequest = new MetadataDeleteRequest(); deleteRequest.Metadata = new Metadata(); deleteRequest.Metadata.Entities = new System.Collections.ObjectModel.Collection<Entity> { }; Entity anEntity = new Entity(); anEntity.Identifier = new ModelContextIdentifier { Id = entityId }; deleteRequest.Metadata.Entities.Add(anEntity); // Delete the specified entity MetadataDeleteResponse deleteResponse = clientProxy.MetadataDelete(deleteRequest); HandleOperationErrors(deleteResponse.OperationResult); } catch (Exception ex) { Console.WriteLine("Error: {0}", ex); } }
// Delete the attribute group with the specified attribute group id. private static void DeleteAttributeGroup(Guid attributeGroupId) { try { // Create the request object for attribute group deletion. MetadataDeleteRequest deleteRequest = new MetadataDeleteRequest(); deleteRequest.Metadata = new Metadata(); deleteRequest.Metadata.AttributeGroups = new System.Collections.ObjectModel.Collection<AttributeGroup> { }; AttributeGroup anAttributeGroup = new AttributeGroup(); // Set attribute group id. anAttributeGroup.Identifier = new MemberTypeContextIdentifier { Id = attributeGroupId }; deleteRequest.Metadata.AttributeGroups.Add(anAttributeGroup); // Delete the specified attribute group. MetadataDeleteResponse deleteResponse = clientProxy.MetadataDelete(deleteRequest); HandleOperationErrors(deleteResponse.OperationResult); } catch (Exception ex) { Console.WriteLine("Error: {0}", ex); } }
private static void DeleteModel(Identifier modelId) { MetadataDeleteRequest deleteRequest = new MetadataDeleteRequest { Metadata = new Metadata { Models = new Collection<Model> { new Model { Identifier = modelId } } } }; MetadataDeleteResponse deleteResponse = clientProxy.MetadataDelete(deleteRequest); HandleOperationErrors(deleteResponse.OperationResult); }