1 write to _helper
System.Web.Entity.Design (1)
System\Data\WebControls\Design\EntityDataSourceDesigner.cs (1)
27
_helper
= new EntityDataSourceDesignerHelper(component as EntityDataSource, true /*interactiveMode*/);
38 references to _helper
System.Web.Entity.Design (38)
System\Data\WebControls\Design\EntityDataSourceDesigner.cs (38)
28
_helper
.AddSystemWebEntityReference();
46
return (!String.IsNullOrEmpty(
_helper
.ConnectionString) && !String.IsNullOrEmpty(
_helper
.DefaultContainerName)) &&
47
(!String.IsNullOrEmpty(
_helper
.EntitySetName) || !String.IsNullOrEmpty(
_helper
.CommandText));
65
EntityDataSourceWizardForm form = new EntityDataSourceWizardForm(serviceProvider,
_helper
.LoadEntityDataSourceState(), this);
69
_helper
.SaveEntityDataSourceProperties(form.EntityDataSourceState);
92
_helper
.RefreshSchema(preferSilent);
102
return
_helper
.GetView(viewName);
107
return
_helper
.GetViewNames();
113
_helper
.ClearMetadata();
149
return
_helper
.DefaultContainerName;
153
_helper
.DefaultContainerName = value;
168
return
_helper
.EntitySetName;
172
_helper
.EntitySetName = value;
186
return
_helper
.EntityTypeFilter;
190
_helper
.EntityTypeFilter = value;
205
return
_helper
.CommandText;
209
_helper
.CommandText = value;
222
return
_helper
.ConnectionString;
226
_helper
.ConnectionString = value;
241
return
_helper
.OrderBy;
245
_helper
.OrderBy = value;
260
return
_helper
.Select;
264
_helper
.Select = value;
279
return
_helper
.Where;
283
_helper
.Where = value;
293
return
_helper
.AutoGenerateOrderByClause;
301
return
_helper
.AutoGenerateWhereClause;
307
return CloneParameterCollection(
_helper
.CommandParameters);
312
return CloneParameterCollection(
_helper
.OrderByParameters);
317
return CloneParameterCollection(
_helper
.SelectParameters);
322
return CloneParameterCollection(
_helper
.WhereParameters);
344
SetParameters(
_helper
.CommandParameters, newParams);
349
SetParameters(
_helper
.OrderByParameters, newParams);
354
SetParameters(
_helper
.SelectParameters, newParams);
359
SetParameters(
_helper
.WhereParameters, newParams);
395
return
_helper
;