-
Notifications
You must be signed in to change notification settings - Fork 4.1k
.Net: MEVD data type tests #12567
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
.Net: MEVD data type tests #12567
Conversation
@@ -28,7 +28,7 @@ protected override bool IsKeyPropertyTypeValid(Type type, [NotNullWhen(false)] o | |||
|
|||
protected override bool IsDataPropertyTypeValid(Type type, [NotNullWhen(false)] out string? supportedTypes) | |||
{ | |||
supportedTypes = "bool, string, int, long, float, double, decimal, string[]/List<string>"; | |||
supportedTypes = "bool, string, int, long, float, double, string[]/List<string>"; |
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.
Can you send me a list of types we are adding/removing support for so that I can also update the docs?
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.
Hey, sorry it took so long to do this. I generally tried to avoid making changes in this PR (but rather only to add tests), but here are changes I did (hopefully I didn't miss anything):
- Pinecone: remove decimal
- Redis: remove bool
- SQL Server: add DateOnly
In addition, the tests caught various trivial missing stuff which I added, so various types which weren't fully supported before (especially in LINQ filters) should now work properly.
Closes #12505