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

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

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

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