Skip to content

Instantly share code, notes, and snippets.

@christiannagel
Created August 30, 2018 13:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save christiannagel/6510c723a59dbf8d534cbc0bfa83ec6f to your computer and use it in GitHub Desktop.
Save christiannagel/6510c723a59dbf8d534cbc0bfa83ec6f to your computer and use it in GitHub Desktop.
Access Cosmos DB created document properties using shadow properties with EF Core
public void ShowCosmosDBState()
{
foreach (var book in Books)
{
Console.WriteLine($"{book.Title}, etag: {Entry<Book>(book).Property("_etag").CurrentValue}, " +
$"self: {Entry(book).Property("_self").CurrentValue}, " +
$"ts: {Entry(book).Property("_ts").CurrentValue}");
Console.WriteLine();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment