Exemplo n.º 1
0
        public static bool IsOrdinalKeyProperty([NotNull] this IReadOnlyProperty property)
        {
            Check.DebugAssert(
                property.DeclaringEntityType.IsOwned(), $"Expected {property.DeclaringEntityType.DisplayName()} to be owned.");
            Check.DebugAssert(property.GetJsonPropertyName().Length == 0, $"Expected {property.Name} to be non-persisted.");

            return(property.FindContainingPrimaryKey() is IReadOnlyKey key &&
                   key.Properties.Count > 1 &&
                   !property.IsForeignKey() &&
                   property.ClrType == typeof(int) &&
                   property.ValueGenerated == ValueGenerated.OnAdd);
        }