-
Notifications
You must be signed in to change notification settings - Fork 3.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Rename provider specific core metadata extensions #16824
Conversation
Fixes #16773 Note going through obsolete here since this are a lot less used.
73cf39b
to
714e6ba
Compare
=> property.FindAnnotation(SqliteAnnotationNames.Srid)?.GetConfigurationSource(); | ||
|
||
/// <summary> | ||
/// Returns the dimension to use when creating a column for this property. | ||
/// </summary> | ||
/// <param name="property"> The property. </param> | ||
/// <returns> The dimension to use when creating a column for this property. </returns> | ||
public static string GetSqliteDimension([NotNull] this IProperty property) | ||
public static string GetSpatialDimension([NotNull] this IProperty property) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have a slight preference for geometry dimension (builder APIs too)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(or possibly geometric if it grammars better)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
How slight?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Significant. Neither NTS nor SpaiaLite use the word spatial in their APIs
Fixes #16773
Note going through obsolete here since this are a lot less used.