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 Sep 28, 2016
1 parent 729fc83 commit ab3a295
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public Task<IEdmModel> GetModelAsync(ModelContext context, CancellationToken can
if (efEntityContainers.Count > 1)
{
var containerNames = efEntityContainers.Aggregate("", (current, next) => next.Name + ", ");
throw new Exception("This project has multiple EntityFrameworkApis using different DbContexts, and the correct contect could not be loaded. \r\n" +
throw new Exception("This project has multiple EntityFrameworkApis using different DbContexts, and the correct context could not be loaded. \r\n" +
$"The contexts available are '{containerNames.Substring(0, containerNames.Length - 2)}' but the Container expects '{efEntityContainer.Name}'.");
}
throw new Exception("Could not find the correct DbContext instance for this EntityFrameworkApi. \r\n" +
Expand Down

0 comments on commit ab3a295

Please sign in to comment.