共用方式為


IDatabaseModelFactory 介面

定義

服務通常是由資料庫提供者實作,以將資料庫反向工程成 DatabaseModel

public interface IDatabaseModelFactory
type IDatabaseModelFactory = interface
Public Interface IDatabaseModelFactory
衍生

備註

服務存留期為 Scoped 。 這表示每個 DbContext 實例都會使用此服務自己的實例。 實作可能相依于任何存留期註冊的其他服務。 實作不需要安全線程。

如需詳細資訊和範例 ,請參閱反向工程 (scaffolding) 現有的資料庫EF Core 設計階段服務

方法

Create(DbConnection, DatabaseModelFactoryOptions)

使用指定的連接連接到資料庫,並為資料庫建立 DatabaseModel

Create(DbConnection, IEnumerable<String>, IEnumerable<String>)

使用指定的連接連接到資料庫,並為資料庫建立 DatabaseModel

Create(String, DatabaseModelFactoryOptions)

使用指定的連接字串連接到資料庫,並為資料庫建立 DatabaseModel

Create(String, IEnumerable<String>, IEnumerable<String>)

使用指定的連接字串連接到資料庫,並為資料庫建立 DatabaseModel

Create(String, TableSelectionSet)

服務通常是由資料庫提供者實作,以將資料庫反向工程成 DatabaseModel

適用於