提交 583bc54f 编写于 作者: S Shay Rojansky

Sync GetValueGenerationStrategy

上级 40dc0d3c
......@@ -221,9 +221,10 @@ public static void RemoveHiLoOptions(this IConventionProperty property)
/// <returns>The strategy, or <see cref="NpgsqlValueGenerationStrategy.None"/> if none was set.</returns>
public static NpgsqlValueGenerationStrategy GetValueGenerationStrategy(this IReadOnlyProperty property)
{
if (property[NpgsqlAnnotationNames.ValueGenerationStrategy] is { } annotation)
var annotation = property.FindAnnotation(NpgsqlAnnotationNames.ValueGenerationStrategy);
if (annotation != null)
{
return (NpgsqlValueGenerationStrategy)annotation;
return (NpgsqlValueGenerationStrategy?)annotation.Value ?? NpgsqlValueGenerationStrategy.None;
}
if (property.ValueGenerated != ValueGenerated.OnAdd
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册