ComplexType Classe

Definizione

Rappresenta un tipo complesso in un modello concettuale.

public class ComplexType : System.Data.Metadata.Edm.StructuralType
Ereditarietà

Esempio

L'esempio di codice seguente ottiene un'area di lavoro metadati dalla connessione e usa tale area di lavoro metadati per recuperare informazioni sulle proprietà dei tipi complessi nel modello specificato. Si noti che l'area di lavoro metadati è un componente del servizio di runtime che fornisce supporto per il recupero dei metadati.

Nell'esempio di codice viene utilizzato un oggetto CSpace per specificare il modello. CSpace rappresenta il nome predefinito per il modello concettuale. L'esempio di codice usa il modello CustomerComplexAddr fornito nell'argomento Procedura: Definire un modello con tipi complessi (Entity Framework).

using System;  
using System.Data;  
using System.Collections.ObjectModel;  
using System.Data.EntityClient;  
using System.Data.Metadata.Edm;  

class GetComplexTypeMembersExample  
{  
  static void Main()  
  {  
    try  
    {  
      // Establish a connection to the underlying data provider by   
      // using the connection string specified in the config file.  
      using (EntityConnection connection =  
        new EntityConnection("Name=CustomerWComplexAddrEntities"))  
      {  
         // Open the connection.  
         connection.Open();  

         // Access the metadata workspace.  
         MetadataWorkspace workspace =   
            connection.GetMetadataWorkspace();  

         // Get properties of complex types.  
         GetProperties(workspace, DataSpace.CSpace);  
      }  
    }  
    catch (MetadataException exceptionMetadata)  
    {  
       Console.WriteLine("MetadataException: {0}",  
              exceptionMetadata.Message);  
    }  
    catch (System.Data.MappingException exceptionMapping)  
    {  
       Console.WriteLine("MappingException: {0}",  
               exceptionMapping.Message);  
    }  
  }  

  public static void GetProperties(MetadataWorkspace workspace,   
      DataSpace model)  
  {  
    // Get a collection of complex types.  
    ReadOnlyCollection<ComplexType> complexTypes =  
       workspace.GetItems<ComplexType>(model);  

    // Iterate through the collection to get each complex type.  
    foreach (ComplexType complexType in complexTypes)  
    {  
       Console.WriteLine(  
         "\n\n***ComplexType Name: {0}, Namespace: {1}",  
         complexType.Name,  
         complexType.NamespaceName);  

       Console.WriteLine(  
          "\nGet the properties of this " +  
          "ComplexType object ==>");  
          // Iterate through the collection to get each property of the   
          // current ComplexType object.  
          foreach (EdmProperty property in complexType.Properties)  
          {  
            Console.Write("   Property Name: {0} ", property.Name);  

            Console.WriteLine(  
               "   Property declaring Type: {0}, edmtype: {1}," +  
               " default: {2}, nullable: {3} ",  
               property.DeclaringType, property.TypeUsage.EdmType,  
               property.Default, property.Nullable);  
          }  
      }  
  }  
}  

Commenti

In ComplexType un modello concettuale rappresenta un tipo che include un set di proprietà come un tipo di entità, ma non include una proprietà chiave. Per altre informazioni sui tipi complessi in un modello concettuale, vedere Tipo complesso e Procedura: Definire un modello con tipi complessi (Entity Framework).For more information about the complex types in a conceptual model, see Complex Type and How to: Define a Model with Complex Types (Entity Framework).

Proprietà

Abstract

Ottiene un valore che indica se il tipo è o non è astratto.

(Ereditato da EdmType)
BaseType

Ottiene il tipo di base del tipo.

(Ereditato da EdmType)
BuiltInTypeKind

Ottiene il tipo del tipo incorporato per ComplexType.

Documentation

Ottiene o imposta la documentazione associata al tipo.

(Ereditato da MetadataItem)
FullName

Ottiene il nome completo del tipo.

(Ereditato da EdmType)
Members

Ottiene l'elenco di membri nel tipo.

(Ereditato da StructuralType)
MetadataProperties

Ottiene l'elenco di proprietà del tipo corrente.

(Ereditato da MetadataItem)
Name

Ottiene il nome del tipo.

(Ereditato da EdmType)
NamespaceName

Ottiene lo spazio dei nomi del tipo.

(Ereditato da EdmType)
Properties

Ottiene l'elenco di proprietà per l'oggetto ComplexType.

Metodi

Equals(Object)

Determina se l'oggetto specificato è uguale all'oggetto corrente.

(Ereditato da Object)
GetCollectionType()

Restituisce un'istanza di CollectionType il cui tipo di elemento è il tipo corrente.

(Ereditato da EdmType)
GetHashCode()

Funge da funzione hash predefinita.

(Ereditato da Object)
GetType()

Ottiene l'oggetto Type dell'istanza corrente.

(Ereditato da Object)
MemberwiseClone()

Crea una copia superficiale dell'oggetto Object corrente.

(Ereditato da Object)
ToString()

Restituisce il nome completo del tipo.

(Ereditato da EdmType)

Si applica a