Skip to content

Instantly share code, notes, and snippets.

@christiannagel
Created August 30, 2018 13:30
Embed
What would you like to do?
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