/// <summary>
 /// Deprecated Method for adding a new object to the UniqueIds EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToUniqueIds(UniqueId uniqueId)
 {
     base.AddObject("UniqueIds", uniqueId);
 }
 /// <summary>
 /// Create a new UniqueId object.
 /// </summary>
 /// <param name="entityId">Initial value of the EntityId property.</param>
 /// <param name="uniqueIdTypeId">Initial value of the UniqueIdTypeId property.</param>
 /// <param name="uniqueIdValue">Initial value of the UniqueIdValue property.</param>
 public static UniqueId CreateUniqueId(global::System.Int32 entityId, global::System.Int32 uniqueIdTypeId, global::System.String uniqueIdValue)
 {
     UniqueId uniqueId = new UniqueId();
     uniqueId.EntityId = entityId;
     uniqueId.UniqueIdTypeId = uniqueIdTypeId;
     uniqueId.UniqueIdValue = uniqueIdValue;
     return uniqueId;
 }