Telerik OpenAccess and multiple conditions in the where clause
问题 I have just written a few unit tests and to my horror it failed. Here is my test... [TestMethod] public void FetchWithMoreThanOneConditionUsingKnownTypes() { using (var scope = EntityObjectScopeProvider.GetNewObjectScope()) { var temp = new TempClient() { FirstName = "Rohan", Surname = "West" }; var entity = scope.Extent<ClientEntity>().Where(c => temp.FirstName == c.FirstName && temp.Surname == c.Surname).FirstOrDefault(); Assert.IsNotNull(entity); Assert.AreEqual(entity.FirstName, temp