Click or drag to resize

IDslCompilerContextAttachToDataSource Method

Links a ActualData Object that is created in Scripted Activity to a Workflow ActualData Source so it can be used in Form Activity.

Namespace: Casewhere.Runtime.DSL.CompilerContext
Assembly: Casewhere.Runtime (in Casewhere.Runtime.dll) Version: 2.8.5.0
Syntax
C#
void AttachToDataSource(
	string dataSourceName,
	params string[] dataObjectIds
)

Parameters

dataSourceName  String
ActualData Source name.
dataObjectIds  String
ActualData Object ids.
Remarks
The ActualData Source's context must be set to "Manual".
Example
C#
var dataApi = ctx.Use<IDataApi>();
var employeeId = dataApi.Add("Employee", candidateObj);
ctx.AttachToDataSource("employeeToEdit", employeeId);
See Also