Created
July 1, 2016 21:02
-
-
Save JudahGabriel/22ca0d3920f77a60454e87554a4d1a88 to your computer and use it in GitHub Desktop.
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
// Listen for changes to Recipes. | |
// When that happens, update the corresponding RecipeViewModel. | |
ravenStore | |
.Changes() | |
.ForDocumentsOfType<Recipe>() | |
.Subscribe(docChange => this.UpdateViewModelFromRecipe(docChange.Id)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment