Access Cosmos DB created document properties using shadow properties with EF Core
This file contains 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
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