Example #1
0
 /// <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, EdmDeltaKind.DeltaLink);
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="EdmDeltaDeletedResourceObject"/> 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 EdmDeltaDeletedResourceObject(IEdmEntityType entityType, bool isNullable)
     : base(entityType, isNullable)
 {
     _edmType = new EdmDeltaType(entityType, DeltaItemKind.DeletedResource);
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="EdmDeltaResourceObject"/> class.
 /// </summary>
 /// <param name="entityType">The <see cref="IEdmEntityType"/> of this DeltaEntityObject.</param>
 /// <param name="isNullable">true if this object can be nullable; otherwise, false.</param>
 public EdmDeltaResourceObject(IEdmEntityType entityType, bool isNullable)
     : base(entityType, isNullable)
 {
     _edmType = new EdmDeltaType(entityType, EdmDeltaKind.Resource);
 }
Example #4
0
 /// <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);
 }
Example #5
0
 /// <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, DeltaItemKind.DeltaDeletedLink);
 }
Example #6
0
 /// <summary>
 /// Initializes a new instance of the <see cref="EdmDeltaEntityObject"/> class.
 /// </summary>
 /// <param name="entityType">The <see cref="IEdmEntityType"/> of this DeltaEntityObject.</param>
 /// <param name="isNullable">true if this object can be nullable; otherwise, false.</param>
 public EdmDeltaEntityObject(IEdmEntityType entityType, bool isNullable)
     : base(entityType, isNullable)
 {
     _edmType = new EdmDeltaType(entityType, EdmDeltaEntityKind.Entry);
 }