dataobjects-net
dataobjects-net copied to clipboard
Version 7.0.3 Similar to https://support.x-tensive.com/question/6718/wrong-sql-translation If query try select required link from entity, then INNER JOIN applied But if entity was got by FirstOrDefault inside query, then it is possible...
Added support Npgsql 6.0+ driver
The `Xtensive.Sql.Drivers.MySql.Connection` code [uses `ExecuteNonQueryAsync`](https://github.com/DataObjects-NET/dataobjects-net/blob/f9d4d0f9b24429cff0c2be3ee9d506da1f6677c8/Orm/Xtensive.Orm.MySql/Sql.Drivers.MySql/Connection.cs#L122). It's a long-standing bug in MySql.Data ([bug 70111](https://bugs.mysql.com/bug.php?id=70111)) that async I/O is not implemented correctly; thus all these methods will actually run synchronously. (See also...
Currently, associations are not supported in structures. Consider the following example showing how this could be useful: ```csharp [HierarchyRoot] public class Config : Entity { [Field, Key] public int Id...
Changing type of primary key column also switches key generator. This can cause problems in case when switching is from more usable generator to less usable one. Possible scenario is...
With Query.Execute you can executed compiled query (so it should not be translated next time). You can also execute IQueryable using it, but you can't execute IQueryable constructed in other...
Inspired by the #125 issue
Running the following odata query, the DataObjects throws an error: Sample: https://github.com/fairking/DoOdataTest Query: `https://localhost:5001/odata/weatherforecast?$apply=groupby((summary), aggregate(temperatureC with average as total))` Error: ``` Xtensive.Orm.QueryTranslationException: Unable to translate 'Query.All().Select(dtoWeatherForecast => new WeatherForecastVm() {...
Can't install web extension on .NET framework 4.8 project. It's not compiled to .NET Standard 2.0 like the rest of the project. It's compiled to Core 2.0.