5 instantiations of EntityDataSourceWrapper
System.Web.Entity (5)
System\Data\WebControls\EntityDataSourceView.cs (4)
480
modifiedEntityWrapper = new
EntityDataSourceWrapper
(wrapperCollection, entity);
607
entityWrapper = new
EntityDataSourceWrapper
(wrapperCollection, entity);
684
entityWrapper = new
EntityDataSourceWrapper
(wrapperCollection, entity);
710
entityWrapper = new
EntityDataSourceWrapper
(wrapperCollection, changingArgs.Entity);
System\Data\WebControls\EntityDataSourceWrapperCollection.cs (1)
103
EntityDataSourceWrapper wrapper = new
EntityDataSourceWrapper
(this, entity);
34 references to EntityDataSourceWrapper
System.Web.Entity (34)
System\Data\WebControls\EntityDataSourceColumn.cs (9)
105
internal abstract object GetValue(
EntityDataSourceWrapper
entity);
106
internal abstract void SetValue(
EntityDataSourceWrapper
entity, object value);
155
override internal object GetValue(
EntityDataSourceWrapper
entity)
160
override internal void SetValue(
EntityDataSourceWrapper
entity, object value)
286
internal override object GetValue(
EntityDataSourceWrapper
entity)
308
internal override void SetValue(
EntityDataSourceWrapper
entity, object value)
394
internal override void SetValue(
EntityDataSourceWrapper
entity, object value)
408
internal override object GetValue(
EntityDataSourceWrapper
entity)
431
private EntityReference<T> GetRelatedReference(
EntityDataSourceWrapper
entity)
System\Data\WebControls\EntityDataSourceMemberPath.cs (4)
107
internal object GetValue(
EntityDataSourceWrapper
entity)
124
internal void SetValue(
EntityDataSourceWrapper
entity, object value)
132
private object Initialize(
EntityDataSourceWrapper
entity)
146
private object GetParentObjectValue(
EntityDataSourceWrapper
entity, bool initialize)
System\Data\WebControls\EntityDataSourceReferenceGroup.cs (5)
53
internal abstract void SetKeyValues(
EntityDataSourceWrapper
wrapper, Dictionary<string, object> newKeyValues);
55
internal abstract EntityKey GetEntityKey(
EntityDataSourceWrapper
entity);
66
internal override void SetKeyValues(
EntityDataSourceWrapper
wrapper, Dictionary<string, object> newKeyValues)
125
internal override EntityKey GetEntityKey(
EntityDataSourceWrapper
entity)
131
private EntityReference<T> GetRelatedReference(
EntityDataSourceWrapper
entity)
System\Data\WebControls\EntityDataSourceUtil.cs (3)
147
internal static void ValidateWebControlParameterNames(
EntityDataSourceWrapper
entityWrapper,
673
internal static void SetAllPropertiesWithVerification(
EntityDataSourceWrapper
entityWrapper,
1053
internal static void ValidateKeyPropertyValuesExist(
EntityDataSourceWrapper
entityWrapper, Dictionary<string, object> propertyValues)
System\Data\WebControls\EntityDataSourceView.cs (6)
475
EntityDataSourceWrapper
modifiedEntityWrapper;
600
EntityDataSourceWrapper
entityWrapper;
679
EntityDataSourceWrapper
entityWrapper;
936
private void CreateEntityForInsert(
EntityDataSourceWrapper
entityWrapper, IDictionary values, ParameterCollection insertParameters)
948
EntityDataSourceWrapper
entityWrapper, ParameterCollection updateParameters)
995
foreach (
EntityDataSourceWrapper
wrapper in wrapperCollection)
System\Data\WebControls\EntityDataSourceWrapperCollection.cs (4)
42
private readonly List<
EntityDataSourceWrapper
> _wrapperList;
63
_wrapperList = new List<
EntityDataSourceWrapper
>();
101
internal
EntityDataSourceWrapper
AddWrappedEntity(object entity)
103
EntityDataSourceWrapper
wrapper = new EntityDataSourceWrapper(this, entity);
System\Data\WebControls\EntityDataSourceWrapperPropertyDescriptor.cs (3)
98
private
EntityDataSourceWrapper
GetWrapper(object component)
105
EntityDataSourceWrapper
wrapper = component as
EntityDataSourceWrapper
;