-
Notifications
You must be signed in to change notification settings - Fork 3.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Consolidate SQL syntax #24806
Merged
Merged
Consolidate SQL syntax #24806
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
lauxjpn
added a commit
to lauxjpn/Pomelo.EntityFrameworkCore.MySql
that referenced
this pull request
Apr 30, 2021
lauxjpn
added a commit
to lauxjpn/Pomelo.EntityFrameworkCore.MySql
that referenced
this pull request
May 2, 2021
lauxjpn
added a commit
to lauxjpn/Pomelo.EntityFrameworkCore.MySql
that referenced
this pull request
May 2, 2021
lauxjpn
added a commit
to PomeloFoundation/Pomelo.EntityFrameworkCore.MySql
that referenced
this pull request
May 2, 2021
* Migrate to EF Core 6.0.0-preview4. * Fix MySqlMigrationsModelDiffer. * Fix MySqlSqlTranslatingExpressionVisitor (NotTranslatedExpressionType after visiting a SqlBinaryExpression). * Fix MySqlSqlTranslatingExpressionVisitor. * Implement support to return a single byte from a byte array/binary column by index and First() extension method. * Implement explicit datetime/timestamp, date and time literals. * Implement SQL Server based workaround for EXISTS(...LIMIT 0 OFFSET 0) bug in MySQL (MariaDB works fine). * Fix tests. * Implement MySqlNetTopologySuiteApiConsistencyTest. * Implement MySqlApiConsistencyTest. * Setup CI usage of .NET Core preview release. * Skip failing FromSqlQuery test cases, until dotnet/efcore#24806 has been merged. * Implement FieldsOnlyLoadMySqlTest. * Implement DesignTimeMySqlTest. * Implement ManyToManyFieldsLoadMySqlTest. * Implement MySqlUpdateSqlGeneratorTest. * Annotate tests, that are not supported for MariaDB. * Fix tests with inaccurate orderings. (Should be fixed in EF Core.) * Annotate tests, that require window functions support (relevant for MySQL < 8.0.0).
roji
approved these changes
May 4, 2021
lauxjpn
added a commit
to lauxjpn/Pomelo.EntityFrameworkCore.MySql
that referenced
this pull request
Nov 9, 2021
lauxjpn
added a commit
to lauxjpn/Pomelo.EntityFrameworkCore.MySql
that referenced
this pull request
Nov 9, 2021
lauxjpn
added a commit
to PomeloFoundation/Pomelo.EntityFrameworkCore.MySql
that referenced
this pull request
Nov 9, 2021
* Remove remnants of workaround for dotnet/efcore#25127. * Remove workaround for dotnet/efcore#24819. * Remove workaround for dotnet/efcore#24806. * Remove workaround for dotnet/efcore#19027.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uses T-SQL for all raw queries in
FromSqlQueryTestBase
and ensures they are funneled throughNormalizeDelimitersInRawString()
, so provider specific delimiters are applied.