/// <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, AssembliesResolver assembliesResolver, bool isNullable)
     : base(entityType, assembliesResolver, isNullable)
 {
     _edmType = new EdmDeltaType(entityType, EdmDeltaEntityKind.DeletedEntry);
 }
Exemplo n.º 2
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, AssembliesResolver assembliesResolver, bool isNullable)
     : base(entityType, assembliesResolver, isNullable)
 {
     _edmType = new EdmDeltaType(entityType, EdmDeltaEntityKind.LinkEntry);
 }
Exemplo n.º 3
0
 /// <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, AssembliesResolver assembliesResolver, bool isNullable)
     : base(entityType, assembliesResolver, isNullable)
 {
     _edmType = new EdmDeltaType(entityType, EdmDeltaEntityKind.DeletedEntry);
 }
Exemplo n.º 4
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, EdmDeltaEntityKind.LinkEntry);
 }
 /// <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);
 }
Exemplo n.º 6
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, AssembliesResolver assembliesResolver, bool isNullable)
     : base(entityType, assembliesResolver, isNullable)
 {
     _edmType = new EdmDeltaType(entityType, EdmDeltaEntityKind.LinkEntry);
 }