Class DataExtensions
- Namespace
- CMS.DataEngine
- Assembly
- CMS.DataEngine.dll
Extensions for the SettingsProvider classes
public static class DataExtensions
- Inheritance
-
objectDataExtensions
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
DataSetSource 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
IConditionalObjectFactoryFactory to extend
className
stringObject class name
columnName
stringColumn name
condition
Func<object, bool>Condition that must be matched, if null, the value converted to bool must match
Returns
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
TObject to set up
setup
Action<T>Set up action
Returns
- T
Type Parameters
T