-
Notifications
You must be signed in to change notification settings - Fork 299
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
GetSchema("DataType") is not compatible with Azure SQL Edge #2086
Comments
@MaceWindu I will look into it and report back. |
@MaceWindu Does it work with Azure SQL database or is it same issue? |
@ErikEJ , Azure SQL has own limitations, but this part works fine. For Azure SQL we personally skip read of objects description from missing view sys.extended_properties, but it looks like SqlClient doesn't use it for schema API |
ErikEJ
added a commit
to ErikEJ/SqlClient
that referenced
this issue
Jul 23, 2023
David-Engel
pushed a commit
that referenced
this issue
Aug 15, 2023
This was referenced Jun 18, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Describe the bug
GetSchema('DataType") loads UDT types using CLR features of SQL Server, not supported on
Azure SQL Edge
leading to exception from server.You can see that
addUDTsToDataTypesTable
method checks only SQL Server version here.To reproduce
Expected behavior
API doesn't try to access unsupported by server functionality.
Further technical details
Microsoft.Data.SqlClient version: 5.1.1
Additional context
Azure Edge unsupported features
Original issue : linq2db/linq2db#4195
The text was updated successfully, but these errors were encountered: