Esempio n. 1
0
        public static void SetConfiguration(this AssociationType associationType, object configuration)
        {
            DebugCheck.NotNull(associationType);

            associationType.GetMetadataProperties().SetConfiguration(configuration);
        }
Esempio n. 2
0
        public static void MarkPrincipalConfigured(this AssociationType associationType)
        {
            DebugCheck.NotNull(associationType);

            associationType.GetMetadataProperties().SetAnnotation(IsPrincipalConfiguredAnnotation, true);
        }
Esempio n. 3
0
        public static void MarkIndependent(this AssociationType associationType)
        {
            DebugCheck.NotNull(associationType);

            associationType.GetMetadataProperties().SetAnnotation(IsIndependentAnnotation, true);
        }
Esempio n. 4
0
 public static void SetConfiguration(this AssociationType associationType, object configuration)
 {
     associationType.GetMetadataProperties().SetConfiguration(configuration);
 }
Esempio n. 5
0
 public static void MarkPrincipalConfigured(this AssociationType associationType)
 {
     associationType.GetMetadataProperties().SetAnnotation("IsPrincipalConfigured", (object)true);
 }
Esempio n. 6
0
 public static void MarkIndependent(this AssociationType associationType)
 {
     associationType.GetMetadataProperties().SetAnnotation("IsIndependent", (object)true);
 }