I am using EF 4 and is trying to unit test the follow line using Moq:
var convertError = models
.Where(x => SqlFunctions.StringConvert((decimal?) (x.convert ?? 0)) == "0")
.Any();
and it seems like SqlFunctions.StringConvert() will throw if it detects the context is mocked.
It gives an error saying:
This function can only be invoked from LINQ to Entities
Is it possible to tell SqlFunctions.StringConvert to return a mock object so I can get rid of this error?