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