public void VisitTableCollectionReference(OracleTableCollectionReference tableCollectionReference)
 {
     throw new NotSupportedException();
 }
Ejemplo n.º 2
0
		public void VisitTableCollectionReference(OracleTableCollectionReference tableCollectionReference)
		{
			if (TryBuildSchemaTooltip(tableCollectionReference))
			{
				return;
			}

			ToolTip =
				new ToolTipObject
				{
					DataContext = $"{tableCollectionReference.FullyQualifiedObjectName} ({tableCollectionReference.Type.ToCategoryLabel()})"
				};
		}