35 references to EntityDataSource
System.Web.Entity.Design (35)
System\Data\WebControls\Design\EntityDataSourceDesignerHelper.cs (35)
92
_owner = designerHost.GetDesigner(this.
EntityDataSource
) as EntityDataSourceDesigner;
463
EntityConnectionStringBuilder connStrBuilder = VerifyConnectionString(this.
EntityDataSource
.ConnectionString, true /*allowNamedConnections*/);
663
ITypeDiscoveryService typeDiscoverySvc = this.
EntityDataSource
.Site.GetService(typeof(ITypeDiscoveryService)) as ITypeDiscoveryService;
831
UIHelper.ShowError(
EntityDataSource
.Site, message);
840
UIHelper.ShowWarning(
EntityDataSource
.Site, message);
1083
if (String.IsNullOrEmpty(this.
EntityDataSource
.ConnectionString) ||
1084
String.IsNullOrEmpty(this.
EntityDataSource
.DefaultContainerName) ||
1085
String.IsNullOrEmpty(this.
EntityDataSource
.CommandText) && String.IsNullOrEmpty(this.
EntityDataSource
.EntitySetName))
1143
entityDataSource.CommandText = this.
EntityDataSource
.CommandText;
1144
CopyParameters(this.
EntityDataSource
.CommandParameters, entityDataSource.CommandParameters);
1145
entityDataSource.DefaultContainerName = this.
EntityDataSource
.DefaultContainerName;
1146
entityDataSource.EntitySetName = this.
EntityDataSource
.EntitySetName;
1147
entityDataSource.EntityTypeFilter = this.
EntityDataSource
.EntityTypeFilter;
1148
entityDataSource.GroupBy = this.
EntityDataSource
.GroupBy;
1149
entityDataSource.Select = this.
EntityDataSource
.Select;
1150
entityDataSource.EnableFlattening = this.
EntityDataSource
.EnableFlattening;
1151
CopyParameters(this.
EntityDataSource
.SelectParameters, entityDataSource.SelectParameters);
1473
this.
EntityDataSource
.ConnectionString = state.ConnectionString;
1474
this.
EntityDataSource
.DefaultContainerName = state.DefaultContainerName;
1475
this.
EntityDataSource
.EnableDelete = state.EnableDelete;
1476
this.
EntityDataSource
.EnableInsert = state.EnableInsert;
1477
this.
EntityDataSource
.EnableUpdate = state.EnableUpdate;
1478
this.
EntityDataSource
.EntitySetName = state.EntitySetName;
1479
this.
EntityDataSource
.EntityTypeFilter = state.EntityTypeFilter;
1480
this.
EntityDataSource
.Select = state.Select;
1481
this.
EntityDataSource
.EnableFlattening = state.EnableFlattening;
1488
state.ConnectionString = this.
EntityDataSource
.ConnectionString;
1489
state.DefaultContainerName = this.
EntityDataSource
.DefaultContainerName;
1490
state.EnableDelete = this.
EntityDataSource
.EnableDelete;
1491
state.EnableInsert = this.
EntityDataSource
.EnableInsert;
1492
state.EnableUpdate = this.
EntityDataSource
.EnableUpdate;
1493
state.EntitySetName = this.
EntityDataSource
.EntitySetName;
1494
state.EntityTypeFilter = this.
EntityDataSource
.EntityTypeFilter;
1495
state.Select = this.
EntityDataSource
.Select;