Created
March 13, 2018 22:17
-
-
Save lohithgn/4861748c0546b0461f51bd8cde738ddc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//create document | |
var volcano = new Volcano | |
{ | |
VolcanoName = "Rainier", | |
Country = "United States", | |
Region = "US-Washington", | |
Location = new Location | |
{ | |
Type = "Point", | |
Coordinates = new double[] { -121.758, 46.87 } | |
}, | |
Elevation = 4392, | |
Type = "StratoVolcano", | |
Status = "Dendrochronology", | |
LastEruption = "Last known eruption from 1800-1899, inclusive" | |
}; | |
var document = await client.CreateDocumentAsync( | |
UriFactory.CreateDocumentCollectionUri(dbName,collectionName) | |
,volcano); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment