-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
CSHARP-4779: Support Dictionary(IEnumerable<KeyValuePair<TKey, TValue>> collection) constructor in LINQ #1657
base: main
Are you sure you want to change the base?
Conversation
…>> collection) constructor in LINQ3
|
||
var stages = Translate(collection, queryable); | ||
|
||
AssertStages(stages, "{ $project : { _v : { $arrayToObject : [[{ k : 'A', v : '$A' }, { k : 'B', v : '$B' }]] }, _id : 0 } }"); |
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.
A further simplifcation could turn this into:
{ $project : { _v : { A : "$A", B : "$B" }, _id : 0 } }
When all the k
values passed to $arrayToObject
are string constants you can do this simplification.
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.
Done
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.
Overall looks good to me, just left some minor comments.
// [Fact] | ||
// public void NewDictionary_with_KeyValuePairs_Create_should_translate() | ||
// { | ||
// var collection = Fixture.Collection; | ||
// | ||
// var queryable = collection.AsQueryable() | ||
// .Select(d => new Dictionary<string, string>( | ||
// new[] { KeyValuePair.Create("A", d.A), KeyValuePair.Create("B", d.B) })); | ||
// | ||
// var stages = Translate(collection, queryable); | ||
// | ||
// AssertStages(stages, "{ $project : { _v : { $arrayToObject : [[{ k : 'A', v : '$A' }, { k : 'B', v : '$B' }]] }, _id : 0 } }"); | ||
// | ||
// var result = queryable.Single(); | ||
// result.Should().Equal(new Dictionary<string, string>{ ["A"] = "a", ["B"] = "b" }); | ||
// } |
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.
forgot to remove this?
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've created another ticket to add support of KeyValuePair.Create. Then will uncomment this test. But thank you for reminding me not to merge like this =)
if (keySerializer is not IRepresentationConfigurable representationConfigurableSerializer | ||
|| representationConfigurableSerializer.Representation != BsonType.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.
could be simplified to if (keySerializer is not IRepresentationConfigurable { Representation: BsonType.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.
Done
if (itemSerializationInfo.Serializer is IRepresentationConfigurable representationConfigurable && | ||
representationConfigurable.Representation == BsonType.Array) |
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.
could also be simplified to if (itemSerializationInfo.Serializer is IRepresentationConfigurable { Representation: BsonType.Array })
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.
Done
|
||
var collectionExpression = arguments.Single(); | ||
var collectionTranslation = ExpressionToAggregationExpressionTranslator.TranslateEnumerable(context, collectionExpression); | ||
AstExpression collectionTranslationAst; |
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.
nit: move this declaration inside the first if statement below
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.
Done
No description provided.