/// <summary> /// Initializes a new instance of the <see cref="EdmDeltaDeletedLink"/> class. /// </summary> /// <param name="entityType">The <see cref="IEdmEntityType"/> of this DeltaDeletedLink.</param> /// <param name="isNullable">true if this object can be nullable; otherwise, false.</param> public EdmDeltaDeletedLink(IEdmEntityType entityType, bool isNullable) : base(entityType, isNullable) { _edmType = new EdmDeltaType(entityType, EdmDeltaEntityKind.DeletedLinkEntry); }
/// <summary> /// Initializes a new instance of the <see cref="EdmDeltaDeletedEntityObject"/> class. /// </summary> /// <param name="entityType">The <see cref="IEdmEntityType"/> of this DeltaDeletedEntityObject.</param> /// <param name="isNullable">true if this object can be nullable; otherwise, false.</param> public EdmDeltaDeletedEntityObject(IEdmEntityType entityType, bool isNullable) : base(entityType, isNullable) { _edmType = new EdmDeltaType(entityType, EdmDeltaEntityKind.DeletedEntry); }
/// <summary> /// Initializes a new instance of the <see cref="EdmDeltaLink"/> class. /// </summary> /// <param name="entityType">The <see cref="IEdmEntityType"/> of this DeltaLink.</param> /// <param name="isNullable">true if this object can be nullable; otherwise, false.</param> public EdmDeltaLink(IEdmEntityType entityType, bool isNullable) : base(entityType, isNullable) { _edmType = new EdmDeltaType(entityType, EdmDeltaEntityKind.LinkEntry); }