5 instantiations of NestedObject
Microsoft.AspNetCore.JsonPatch.SystemTextJson.Tests (5)
IntegrationTests\NestedObjectIntegrationTest.cs (4)
46
var newNested = new
NestedObject
() { StringProperty = "B" };
66
NestedObject = new
NestedObject
() { StringProperty = "A" }
85
NestedObject = new
NestedObject
() { StringProperty = "B" }
88
var testNested = new
NestedObject
() { StringProperty = "B" };
TestObjectModels\SimpleObjectWithNestedObject.cs (1)
24
NestedObject = new
NestedObject
();
4 references to NestedObject
Microsoft.AspNetCore.JsonPatch.SystemTextJson.Tests (4)
IntegrationTests\NestedObjectIntegrationTest.cs (3)
46
var
newNested = new NestedObject() { StringProperty = "B" };
69
var patchDocument = new JsonPatchDocument<
NestedObject
>();
88
var
testNested = new NestedObject() { StringProperty = "B" };
TestObjectModels\SimpleObjectWithNestedObject.cs (1)
12
public
NestedObject
NestedObject { get; set; }