Skip to content
This repository has been archived by the owner on Nov 16, 2023. It is now read-only.

Commit

Permalink
Merge pull request #6 from rnagpal/master
Browse files Browse the repository at this point in the history
Master
  • Loading branch information
arramac authored Mar 20, 2017
2 parents 3955244 + d6dbece commit fa8553f
Showing 1 changed file with 22 additions and 7 deletions.
29 changes: 22 additions & 7 deletions src/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,12 @@ private async Task GetStartedDemo()

await this.CreateFamilyDocumentIfNotExists("FamilyDB", "FamilyCollection", andersenFamily);

Family andersonFamilyDocument = await this.client.ReadDocumentAsync<Family>(UriFactory.CreateDocumentUri("FamilyDB", "FamilyCollection", andersenFamily.Id));

Console.WriteLine("\nRead family {0}", andersonFamilyDocument.Id);

this.WriteToConsoleAndPromptToContinue("{0}", andersonFamilyDocument);

Family wakefieldFamily = new Family
{
Id = "Wakefield.7",
Expand Down Expand Up @@ -155,6 +161,12 @@ private async Task GetStartedDemo()

await this.CreateFamilyDocumentIfNotExists("FamilyDB", "FamilyCollection", wakefieldFamily);

Family wakefieldFamilyDocument = await this.client.ReadDocumentAsync<Family>(UriFactory.CreateDocumentUri("FamilyDB", "FamilyCollection", wakefieldFamily.Id));

Console.WriteLine("\nRead family {0}", wakefieldFamilyDocument.Id);

this.WriteToConsoleAndPromptToContinue("{0}", wakefieldFamilyDocument);

this.ExecuteSimpleQuery("FamilyDB", "FamilyCollection");

// Clean up/delete the database and client
Expand All @@ -179,7 +191,7 @@ private async Task CreateFamilyDocumentIfNotExists(string databaseName, string c
if (de.StatusCode == HttpStatusCode.NotFound)
{
await this.client.CreateDocumentAsync(UriFactory.CreateDocumentCollectionUri(databaseName, collectionName), family);
this.WriteToConsoleAndPromptToContinue("Created Family {0}", family.Id);
this.WriteToConsoleAndPromptToContinue("\nCreated Family {0}", family.Id);
}
else
{
Expand All @@ -205,23 +217,26 @@ private void ExecuteSimpleQuery(string databaseName, string collectionName)
.Where(f => f.LastName == "Andersen");

// The query is executed synchronously here, but can also be executed asynchronously via the IDocumentQuery<T> interface
Console.WriteLine("Running LINQ query...");
Console.WriteLine("\nRunning LINQ query...");
foreach (Family family in familyQuery)
{
Console.WriteLine("\tRead {0}", family);
Console.WriteLine("\nRead {0}", family);
}

// Now execute the same query via direct SQL
IQueryable<Family> familyQueryInSql = this.client.CreateDocumentQuery<Family>(
UriFactory.CreateDocumentCollectionUri(databaseName, collectionName),
"SELECT * FROM Family WHERE Family.lastName = 'Andersen'",
"SELECT * FROM Family WHERE Family.LastName = 'Andersen'",
queryOptions);

Console.WriteLine("Running direct SQL query...");
foreach (Family family in familyQuery)
Console.WriteLine("\nRunning direct SQL query...");
foreach (Family family in familyQueryInSql)
{
Console.WriteLine("\tRead {0}", family);
Console.WriteLine("\nRead {0}", family);
}

Console.WriteLine("Press any key to continue ...");
Console.ReadKey();
}

/// <summary>
Expand Down

0 comments on commit fa8553f

Please sign in to comment.