-
I would like to migrate a project from EF 6 to EF Core, but one of the problems that I have it is that for N:N relationships, EF doesn't create the POCO entity, just use navigation properties. However…
-
I am using the camera view to take pictures, it works well when I set the build to Debug however as soon as I publish the app and change build to Release the app crashes. It's almost as if it no longe…
-
Entity Framework Beta 8 Code-first creates SQL Server table columns from a POCO class not in the order they appear in, as was the case in EF6 but in in alphabetic order. (apart the primary key)
This …
-
## Describe the unexpected behaviour
After https://github.com/ClickHouse/ClickHouse/issues/38522, I started playing with the new Object('json') data type, trying to break it with different configur…
-
**Describe the bug**
Due to the [deprecation of BloomRPC](https://github.com/bloomrpc/bloomrpc), we are searching for an alternative solution. When comparing the Response shown in BloomRPC vs the res…
-
Getter-only properties in C# are [`readonly`](https://msdn.microsoft.com/en-us/magazine/dn802602.aspx), but they should still be deserialized.
I.e. this does not work (but should) (Tested in v6.0.8):…
-
## Expected Behavior
Just install Elementum plugin. It works for Firestick 4K, Windows 10 PC but not for new Google Chromecast with Google TV
## Current Behavior
Cannot in…
-
I have a N:N table in this way:
```
TableA
{
bigint ID;
}
TableB
{
bigint ID
}
TableAB
{
bigint IDA,
bigint IDB
}
```
The TablaAB has a unique relationship, w…
-
I would like to use computed POCO-properties in queries without causing client side evaluation.
Consider these properties:
```CSharp
private readonly List _statusHistory = new List();
public I…
-
The object-relational impedance mismatch has gotten a lot of attention, but there is another kind of impedance: the mismatch between POCOs that are compatible with Entity Framework and POCOs that foll…