Implementing Azure DevOps Solutions by Henry Been Maik van der Gaag

Implementing Azure DevOps Solutions by Henry Been Maik van der Gaag

Author:Henry Been, Maik van der Gaag [Henry Been, Maik van der Gaag]
Language: eng
Format: epub
Tags: COM048000 - COMPUTERS / Systems Architecture / Distributed Systems and Computing, COM051440 - COMPUTERS / Software Development and Engineering / Tools, COM061000 - COMPUTERS / Client-Server Computing
Publisher: Pack publishing
Published: 2020-06-10T12:53:52+00:00


public Person(string name, string city) {

Name = name ?? throw new ArgumentNullException();

City = city ?? throw new ArgumentNullException();

}

[JsonProperty]

public string Name { get; private set; }

[JsonProperty]

public string City { get; private set; }

}

{

“Name”: “Mark Anderson”,

“City”: “Amsterdam”

}

While the definition of the Person class has changed—and the corresponding JSON has as well—both document forms can be saved into the same collection.

This shows that from the viewpoint of writing information to the database, the schema-less approach is very convenient, since developers do not have to think about schema change management at all.



Download



Copyright Disclaimer:
This site does not store any files on its server. We only index and link to content provided by other sites. Please contact the content providers to delete copyright contents if any and email us, we'll remove relevant links or contents immediately.