The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.
Database::DefaultConnectionFactory Property
Entity Framework 6.0
Note: This API is now obsolete.Namespace:
System.Data.Entity
Assembly: EntityFramework (in EntityFramework.dll)
Return to top
The connection factory to use when creating a DbConnection from just a database name or a connection string.
Assembly: EntityFramework (in EntityFramework.dll)
public: [ObsoleteAttribute("The default connection factory should be set in the config file or using the DbConfiguration class. (See http://go.microsoft.com/fwlink/?LinkId=260883)")] property IDbConnectionFactory^ DefaultConnectionFactory { static IDbConnectionFactory^ get(); static void set(IDbConnectionFactory^ value); }
Property Value
Type: System.Data.Entity.Infrastructure::IDbConnectionFactory^This is used when just a database name or connection string is given to DbContext or when the no database name or connection is given to DbContext in which case the name of the context class is passed to this factory in order to generate a DbConnection. By default, the IDbConnectionFactory instance to use is read from the application's .config file from the "EntityFramework DefaultConnectionFactory" entry in appSettings. If no entry is found in the config file then SqlConnectionFactory is used. Setting this property in code always overrides whatever value is found in the config file.
Show: