Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -320,9 +320,13 @@ public sealed class DeepPocoRoot

public sealed class DeepPocoNode
{
[BsonIgnoreIfNull]
public DeepPocoNode right { get; set; }
[BsonIgnoreIfNull]
public DeepPocoNode left { get; set; }

[BsonIgnoreIfNull]
public string rightValue { get; set; }
[BsonIgnoreIfNull]
public string leftValue { get; set; }
}
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,6 @@ public IEnumerable<BsonBenchmarkData> BenchmarkDataSources() =>
[
new("extended_bson/flat_bson.json", "Flat", 75_310_000, typeof(FlatPoco)),
new("extended_bson/full_bson.json", "Full", 57_340_000, typeof(FullPoco)),
new("extended_bson/deep_bson.json", "Deep", 19_640_000, typeof(DeepPocoRoot))
new("extended_bson/deep_bson.json", "Deep", 22_840_000, typeof(DeepPocoRoot))
Comment thread
BorisDog marked this conversation as resolved.
];
}
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,6 @@ public IEnumerable<BsonBenchmarkData> BenchmarkDataSources() =>
[
new("extended_bson/flat_bson.json", "Flat", 75_310_000, typeof(FlatPoco)),
new("extended_bson/full_bson.json", "Full", 57_340_000, typeof(FullPoco)),
new("extended_bson/deep_bson.json", "Deep", 19_640_000, typeof(DeepPocoRoot))
new("extended_bson/deep_bson.json", "Deep", 22_840_000, typeof(DeepPocoRoot))
Comment thread
BorisDog marked this conversation as resolved.
];
}