-
Have a query of this shape:
``` C#
from p in context.Products
where p.OrderDetails.Contains(context.OrderDetails.FirstOrDefault(orderDetail => orderDetail.Discount == 0.1))
select p;
```
EF will thr…
-
Hi,
Since RC2 i am getting FileLoadException occurred when trying to create an instance of a DbContext subclass.
It tries to load Remotion.Linq, Version=2.0.0.0, Culture=neutral, PublicKeyToken=fee0…
-
http://stackoverflow.com/questions/37645066/package-remotion-linq-2-0-2-is-not-compatible-with-netcoreapp1-0
Windows 10
If I create a .NET Core Console App in VS2015, making no changes it builds and…
-
Following code:
```
public class Customer
{
public int Id { get; set; }
public List Orders { get; set; }
}
public class Order
{
public int Id { get; set; }
…
-
Paste into `ComplexNavigationsQueryTestBase`:
```C#
[ConditionalFact]
public virtual void Query_source_materialization_bug_8216()
{
AssertQueryScalar(
(l1s, l2s) =>
from…
-
This is a strange exception, but it is very critical for us during how the legacy database works.
We have a system where an entity has a parent of own type, these parents is combined into a path th…
-
When UseNetToplogySuite() is used to support spatial data, any attempt at random ordering fails.
ie. `.OrderBy(q => Guid.NewGuid())`
See exception and stack trace below.
```
Object reference n…
-
query:
```cs
ctx.Orders.GroupBy(o => o.CustomerID).OrderBy(g => g.Key).Take(5).Skip(3).Distinct().Select(g => g.Key)
```
exception:
```
Unable to cast object of type 'Remotion.Linq.Clauses…
-
I'm unable to isolate this one yet, but wanted to get the issue raised ASAP as it's currently blocking us.
I suspect the issue is due to a bad mapping on our side, however it's currently difficult…
-
Making projection on array throw an exception. Check code below.
```
System.InvalidOperationException: Sequence contains no elements
at System.Linq.Enumerable.First[TSource](IEnumerable`1 sour…