IReadOnlyModel 介面
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
實體形狀、實體之間的關聯性,以及它們對應至資料庫的中繼資料。 模型通常是藉由覆 OnModelCreating(ModelBuilder) 寫衍生 DbContext 上的 方法所建立。
public interface IReadOnlyModel : Microsoft.EntityFrameworkCore.Infrastructure.IReadOnlyAnnotatable
type IReadOnlyModel = interface
interface IReadOnlyAnnotatable
Public Interface IReadOnlyModel
Implements IReadOnlyAnnotatable
- 衍生
- 實作
備註
如需詳細資訊和範例,請參閱 模型化實體類型和關聯 性。
屬性
Item[String] |
取得具有指定名稱之注釋的值,如果不存在,則傳 |
ModelId |
這是支援 Entity Framework Core 基礎結構的內部 API,不受與公用 API 相同的相容性標準。 它可能會在任何版本中變更或移除,而不會有任何通知。 您應該只在程式碼中直接使用它,並知道這麼做可能會導致應用程式在更新至新的 Entity Framework Core 版本時失敗。 |
方法
AnnotationsToDebugString(Int32) |
取得 物件上宣告之所有注釋的偵錯字串。 (繼承來源 IReadOnlyAnnotatable) |
FindAnnotation(String) |
取得具有指定名稱的注釋,如果不存在,則傳 |
FindEntityType(String) |
取得具有指定名稱的實體類型。 |
FindEntityType(String, String, IReadOnlyEntityType) |
取得指定基底名稱的實體類型,定義導覽名稱和定義實體類型。 如果找不到相符的實體類型,則傳 |
FindEntityType(Type) |
取得對應指定實體類別的實體。 |
FindEntityType(Type, String, IReadOnlyEntityType) |
取得指定型別的實體類型,定義導覽名稱和定義實體類型。 如果找不到相符的實體類型,則傳 |
FindEntityTypes(Type) |
取得符合指定型別的實體類型。 |
FindLeastDerivedEntityTypes(Type, Func<IReadOnlyEntityType,Boolean>) |
傳回對應至指定中最小衍生型別的實體類型。 |
GetAnnotation(String) |
取得具有指定名稱的注釋,如果不存在,則會擲回。 (繼承來源 IReadOnlyAnnotatable) |
GetAnnotations() |
取得目前 物件上的所有批註。 (繼承來源 IReadOnlyAnnotatable) |
GetChangeTrackingStrategy() |
取得用於模型中實體的預設變更追蹤策略。 此策略指出內容如何偵測實體類型實例的屬性變更。 |
GetEntityTypes() |
取得模型中定義的所有實體類型。 |
GetProductVersion() |
取得用來建置此模型的 EF Core 元件版本。 |
GetPropertyAccessMode() |
PropertyAccessMode取得用於此模型中實體型別屬性的 。 |
IsShared(Type) |
取得值,指出模型中的共用類型實體是否使用 CLR 類型。 |
ToDebugString(MetadataDebugStringOptions, Int32) |
建立人類可讀取的指定中繼資料標記法。 警告:不要依賴傳回字串的格式。 它專為偵錯而設計,而且可能會在發行之間任意變更。 |