You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The new DbDataSource ADO.NET abstraction has been added to the runtime (dotnet/runtime#64812). This issue tracks adding the minimal support needed for it in EF Core, i.e. allowing UseSqlServer to accept a data source instead of a connection string (or DbConnection). If a data source is provided, creation of a DbConnection would simply default to getting the connection from that data source.
The text was updated successfully, but these errors were encountered:
Npgsql support is being done in npgsql/efcore.pg#2429, without requiring any EF-side changes.
This is still important to support DbDataSource for other database providers, but that has little value until other providers actually implement their own data source implementations with their own features. Punting out of 7.0.
The new DbDataSource ADO.NET abstraction has been added to the runtime (dotnet/runtime#64812). This issue tracks adding the minimal support needed for it in EF Core, i.e. allowing UseSqlServer to accept a data source instead of a connection string (or DbConnection). If a data source is provided, creation of a DbConnection would simply default to getting the connection from that data source.
The text was updated successfully, but these errors were encountered: