/// <summary>
        ///     Sets the <see cref="PropertyAccessMode" /> to use for this property.
        /// </summary>
        /// <param name="property"> The property for which to set the access mode. </param>
        /// <param name="propertyAccessMode"> The <see cref="PropertyAccessMode" />, or null to clear the mode set.</param>
        public static void SetPropertyAccessMode(
            [NotNull] this IMutablePropertyBase property, PropertyAccessMode?propertyAccessMode)
        {
            Check.NotNull(property, nameof(property));

            property[CoreAnnotationNames.PropertyAccessModeAnnotation] = propertyAccessMode;
        }
 /// <summary>
 ///     <para>
 ///         Sets the backing field to use for this property.
 ///     </para>
 ///     <para>
 ///         Backing fields are normally found by convention as described
 ///         here: http://go.microsoft.com/fwlink/?LinkId=723277.
 ///         This method is useful for setting backing fields explicitly in cases where the
 ///         correct field is not found by convention.
 ///     </para>
 ///     <para>
 ///         By default, the backing field, if one is found or has been specified, is used when
 ///         new objects are constructed, typically when entities are queried from the database.
 ///         Properties are used for all other accesses. This can be changed by calling
 ///         <see cref="SetPropertyAccessMode" />.
 ///     </para>
 /// </summary>
 /// <param name="property"> The property for which the backing field should be set. </param>
 /// <param name="fieldName"> The name of the field to use. </param>
 public static void SetField([NotNull] this IMutablePropertyBase property, [CanBeNull] string fieldName)
 => Check.NotNull(property, nameof(property)).AsPropertyBase()
 .SetField(fieldName, ConfigurationSource.Explicit);
Beispiel #3
0
 public static void SetPropertyAccessMode(
     [NotNull] this IMutablePropertyBase property,
     PropertyAccessMode?propertyAccessMode)
 => Check.NotNull(property, nameof(property)).AsPropertyBase()
 .SetPropertyAccessMode(propertyAccessMode, ConfigurationSource.Explicit);