共用方式為


Database.Log 屬性

定義

將 此屬性設定為將 產生的 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>) 檔文字的格式。 如需對記錄/攔截的更低階控制,請參閱 IDbCommandInterceptorDbInterception

適用於