/// <summary>
 /// Deprecated Method for adding a new object to the ExceptionGroups EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToExceptionGroups(ExceptionGroup exceptionGroup)
 {
     base.AddObject("ExceptionGroups", exceptionGroup);
 }
 /// <summary>
 /// Create a new ExceptionGroup object.
 /// </summary>
 /// <param name="exceptionGroupId">Initial value of the ExceptionGroupId property.</param>
 /// <param name="typeFingerprintSha256Hash">Initial value of the TypeFingerprintSha256Hash property.</param>
 /// <param name="exceptionType">Initial value of the ExceptionType property.</param>
 /// <param name="exceptionFingerprint">Initial value of the ExceptionFingerprint property.</param>
 /// <param name="exceptionLocation">Initial value of the ExceptionLocation property.</param>
 public static ExceptionGroup CreateExceptionGroup(global::System.Int32 exceptionGroupId, global::System.String typeFingerprintSha256Hash, global::System.String exceptionType, global::System.String exceptionFingerprint, global::System.String exceptionLocation)
 {
     ExceptionGroup exceptionGroup = new ExceptionGroup();
     exceptionGroup.ExceptionGroupId = exceptionGroupId;
     exceptionGroup.TypeFingerprintSha256Hash = typeFingerprintSha256Hash;
     exceptionGroup.ExceptionType = exceptionType;
     exceptionGroup.ExceptionFingerprint = exceptionFingerprint;
     exceptionGroup.ExceptionLocation = exceptionLocation;
     return exceptionGroup;
 }