Skip to content

Commit

Permalink
Spelling fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Robert McLaws (Microsoft MVP) authored Oct 12, 2016
1 parent af93756 commit 4c0015b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ public Task<IEdmModel> GetModelAsync(ModelContext context, CancellationToken can
// continue to work.
var efEntityContainer = efEntityContainers.FirstOrDefault(c => c.Name == dbContext.GetType().Name);
// @robertmclaws: Now that we're doing a proper FirstOrDefault() instead of a Single(), we wont' crash if more
// that one is returned, and we can check for null and inform the user specifically what happened.
// than one is returned, and we can check for null and inform the user specifically what happened.
if (efEntityContainer == null)
{
if (efEntityContainers.Count > 1)
Expand Down

0 comments on commit 4c0015b

Please sign in to comment.