ScriptResult.

ScriptResult(bool, string, Exception) Constructor

Summary

Script Result
Namespace
Cake.EntityFramework.Models
Containing Type
ScriptResult

Syntax

public ScriptResult(bool isSuccess, string script, Exception exception = null)

Parameters

Name Type Description
isSuccess bool whether the result was successful
script string if successful, the actual migration script
exception Exception the exception if the migration was not successful, defaults to null

Return Value

Type Description
void