Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
PR comment
  • Loading branch information
Maya-Painter committed Oct 13, 2023
commit 4a2bc3bdfa0c73bd9694c7a012d837c4c712b42c
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ public void TestMemberInitializerDotNet()

List<LinqTestInput> camelCaseSettingInputs = new List<LinqTestInput>
{
// TODO (10/13/23): extend this and other tests cases as more LINQ features are added (GROUP BY, etc.)
new LinqTestInput("Filter w/ constant value, camelcase = " + useCamelCaseSerializer, b => getQuery(b).Where(doc => doc.NumericField == 1), skipVerification : true, inputData: insertedData),
new LinqTestInput("Filter w/ DataObject initializer with constant value, camelcase = " + useCamelCaseSerializer, b => getQuery(b).Where(doc => doc == new DataObjectDotNet() { NumericField = 1, StringField = "1" }), skipVerification : true, inputData: insertedData),
new LinqTestInput("Select w/ DataObject initializer, camelcase = " + useCamelCaseSerializer, b => getQuery(b).Select(doc => new DataObjectDotNet() { NumericField = 1, StringField = "1" }), skipVerification : true, inputData: insertedData),
Expand Down