Table of Contents

Class DataExtensions

Namespace
CMS.DataEngine
Assembly
CMS.DataEngine.dll

Extensions for the SettingsProvider classes

public static class DataExtensions
Inheritance
object
DataExtensions

Methods

As<InfoType>(DataSet)

Converts the DataSet to a strongly typed one

public static InfoDataSet<InfoType> As<InfoType>(this DataSet ds) where InfoType : BaseInfo

Parameters

ds DataSet

Source data set

Returns

InfoDataSet<InfoType>

Type Parameters

InfoType

WhenColumnValue(IConditionalObjectFactory, string, string, Func<object, bool>)

Adds the condition for the column value to the factory

public static IConditionalObjectFactory WhenColumnValue(this IConditionalObjectFactory fact, string className, string columnName, Func<object, bool> condition)

Parameters

fact IConditionalObjectFactory

Factory to extend

className string

Object class name

columnName string

Column name

condition Func<object, bool>

Condition that must be matched, if null, the value converted to bool must match

Returns

IConditionalObjectFactory

With<T>(T, Action<T>)

Sets up the object using the given lambda expression

public static T With<T>(this T obj, Action<T> setup)

Parameters

obj T

Object to set up

setup Action<T>

Set up action

Returns

T

Type Parameters

T