Database.Log 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
將 此屬性設定為將 產生的 DbContext SQL 記錄至指定的委派。 例如,若要登入主控台,請將此屬性設定為 Write(String) 。
public Action<string> Log { get; set; }
member this.Log : Action<string> with get, set
Public Property Log As Action(Of String)
屬性值
備註
您可以建立衍生自 DatabaseLogFormatter 的新格式器,並使用 來設定記錄 SetDatabaseLogFormatter(Func<DbContext,Action<String>,DatabaseLogFormatter>) 檔文字的格式。 如需對記錄/攔截的更低階控制,請參閱 IDbCommandInterceptor 和 DbInterception 。