Property | Type | Description | |
---|---|---|---|
BuildObjectValue | object | ||
ConvertType | object |
Method | Description | |
---|---|---|
DecorateList ( IEnumerable pagedList ) : IEnumerable |
Add additional properties to the list (by default it just returns the list)
|
|
DeleteEntities ( IEnumerable |
Remove the specified entities, using the configured DeleteMethodName.
|
|
FilterEntityList ( IEnumerable |
Used to filter down the entity list. Default implementation uses the FilterEntity event.
|
|
Refresh ( ) : void |
Signals objects connected to this data source that it may have been updated.
|
|
SortEntityList ( IEnumerable |
Return the sorted
|
|
UpdateEntities ( IEnumerable |
Update the specified entities using the given values (all entities in the list are updated). Return number of entities modified (which will be entities.count, unless there is an error, or a concurrency check fails)
|
Method | Description | |
---|---|---|
GetView ( string viewName ) : System.Web.UI.DataSourceView |
Method | Description | |
---|---|---|
BuildObjectValue ( object value, |
Convert the specified value to destinationType.
|
|
ConvertType ( object value, |
Helper for type converter. Contains some help for generic types.
|
public DecorateList ( IEnumerable pagedList ) : IEnumerable | ||
pagedList | IEnumerable | |
return | IEnumerable |
public DeleteEntities ( IEnumerable |
||
entities | IEnumerable |
|
return | int |
public FilterEntityList ( IEnumerable |
||
entities | IEnumerable |
|
return | IEnumerable |
protected GetView ( string viewName ) : System.Web.UI.DataSourceView | ||
viewName | string | |
return | System.Web.UI.DataSourceView |
public SortEntityList ( IEnumerable |
||
entities | IEnumerable |
|
sortExpression | String | |
return | IEnumerable |
public UpdateEntities ( IEnumerable |
||
entities | IEnumerable |
|
values | IDictionary | |
oldValues | IDictionary | |
return | int |