forked from microsoft/referencesource
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEntityDataSourceColumn.cs
More file actions
441 lines (377 loc) · 14.6 KB
/
EntityDataSourceColumn.cs
File metadata and controls
441 lines (377 loc) · 14.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
//---------------------------------------------------------------------
// <copyright file="EntityDataSourceColumn.cs" company="Microsoft">
// Copyright (c) Microsoft Corporation. All rights reserved.
// </copyright>
//
// @owner [....]
// @backupOwner [....]
//---------------------------------------------------------------------
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Data.EntityClient;
using System.Data.Metadata.Edm;
using System.Diagnostics;
using System.Globalization;
using System.Reflection;
using System.ComponentModel;
using System.Data.Common;
using System.Data.Objects.DataClasses;
using System.Data.Objects;
using System.Data;
using System.Runtime.CompilerServices;
namespace System.Web.UI.WebControls
{
/// <summary>
/// Represents a column in EntityDataSourceView.
/// </summary>
internal abstract class EntityDataSourceColumn
{
protected EntityDataSourceColumn(string displayName)
: this(displayName, (EntityDataSourceColumn)null)
{
}
protected EntityDataSourceColumn(string displayName, EntityDataSourceColumn controllingColumn)
{
EntityDataSourceUtil.CheckArgumentNull(displayName, "displayName");
this.DisplayName = displayName;
this.ControllingColumn = controllingColumn;
}
/// <summary>
/// Gets the display name for this column.
/// </summary>
internal readonly string DisplayName;
/// <summary>
/// Gets the column exposed to the user. For instance, the reference key
/// it.Order.OrderID might have a dependent it.OrderID where there is a
/// ReferentialConstraint.
/// </summary>
internal readonly EntityDataSourceColumn ControllingColumn;
/// <summary>
/// Gets value indicating whether the column should be exposed to the user.
/// </summary>
internal bool IsHidden
{
get
{
// Columns with dependents are not shown to the user. They are
// merely used to plumb values (e.g. via referential integrity
// constraints)
return this.ControllingColumn != null;
}
}
/// <summary>
/// Gets the CLR type for the column value.
/// </summary>
internal abstract Type ClrType { get; }
/// <summary>
/// Gets a value indicating whether the original value for the column
/// needs to be preserved.
/// </summary>
internal abstract bool IsInteresting { get; }
/// <summary>
/// Gets a value indicating whether the column can be modified. Can be
/// overridden by the collection (which may be readonly).
/// </summary>
internal abstract bool CanWrite { get; }
/// <summary>
/// Indicates whether this column can be assigned a value of null.
/// </summary>
internal abstract bool IsNullable { get; }
/// <summary>
/// Indicates whether this column represents a scalar type.
/// </summary>
internal abstract bool IsScalar { get; }
/// Returns an Entity-SQL representation of this column with respect
/// to entity parameter 'it'.
/// </summary>
/// <returns>Entity-SQL string.</returns>
internal abstract string GetEntitySqlValue();
internal abstract object GetValue(EntityDataSourceWrapper entity);
internal abstract void SetValue(EntityDataSourceWrapper entity, object value);
}
/// <summary>
/// An EntityDataSourceView column that is an entity type or complex type property.
/// </summary>
internal class EntityDataSourcePropertyColumn : EntityDataSourceColumn
{
private readonly EntityDataSourceMemberPath memberPath;
internal EntityDataSourcePropertyColumn(EntityDataSourceMemberPath memberPath)
: base(EntityDataSourceUtil.CheckArgumentNull(memberPath, "memberPath").GetDescription())
{
this.memberPath = memberPath;
}
internal override bool IsInteresting
{
get
{
// the member path knows if its interesting...
return this.memberPath.IsInteresting;
}
}
internal override bool CanWrite
{
get
{
// can always write
return true;
}
}
internal override bool IsNullable
{
get { return memberPath.IsNullable; }
}
internal override bool IsScalar
{
get { return memberPath.IsScalar; }
}
internal override Type ClrType
{
get { return this.memberPath.ClrType; }
}
override internal object GetValue(EntityDataSourceWrapper entity)
{
return this.memberPath.GetValue(entity);
}
override internal void SetValue(EntityDataSourceWrapper entity, object value)
{
this.memberPath.SetValue(entity, value);
}
internal override string GetEntitySqlValue()
{
return this.memberPath.GetEntitySqlValue();
}
public override string ToString()
{
return this.memberPath.ToString();
}
/// <summary>
/// Indicates whether this column represents a primary key value;
/// </summary>
internal bool IsKey
{
get { return memberPath.IsKey; }
}
}
/// <summary>
/// An EntityDataSourceView column
/// </summary>
internal class EntityDataSourceReferenceKeyColumn : EntityDataSourceColumn
{
private readonly EntityDataSourceReferenceGroup group;
private readonly EdmProperty keyMember;
private readonly Type clrType;
private readonly bool isNullable;
internal EntityDataSourceReferenceKeyColumn(MetadataWorkspace workspace, EntityDataSourceReferenceGroup group, EdmProperty keyMember, EntityDataSourceColumn dependent)
: base(CreateDisplayName(group, keyMember), dependent)
{
EntityDataSourceUtil.CheckArgumentNull(group, "group");
EntityDataSourceUtil.CheckArgumentNull(keyMember, "keyMember");
Debug.Assert(EntityDataSourceUtil.IsScalar(keyMember.TypeUsage.EdmType), "Expected primitive or enum type for key members.");
this.group = group;
this.keyMember = keyMember;
this.clrType = EntityDataSourceUtil.GetMemberClrType(workspace, keyMember);
// if the association end is optional (0..1), make sure the CLR type
// is also nullable
if (this.group.End.CorrespondingAssociationEndMember.RelationshipMultiplicity == RelationshipMultiplicity.ZeroOrOne)
{
this.clrType = EntityDataSourceUtil.MakeNullable(clrType);
this.isNullable = true;
}
}
internal override bool IsInteresting
{
get
{
// references are always interesting
return true;
}
}
internal override bool CanWrite
{
get
{
// references can always be written
return true;
}
}
internal override bool IsNullable
{
get { return this.isNullable; }
}
internal override bool IsScalar
{
get { return EntityDataSourceUtil.IsScalar(keyMember.TypeUsage.EdmType); }
}
internal override Type ClrType
{
get { return this.clrType; }
}
internal EntityDataSourceReferenceGroup Group
{
get { return this.group; }
}
internal EdmMember KeyMember
{
get { return this.keyMember; }
}
private static string CreateDisplayName(EntityDataSourceReferenceGroup group, EdmProperty keyMember)
{
EntityDataSourceUtil.CheckArgumentNull(group, "group");
EntityDataSourceUtil.CheckArgumentNull(keyMember, "keyMember");
NavigationProperty navigationProperty;
string result;
if (EntityDataSourceUtil.TryGetCorrespondingNavigationProperty(group.End.CorrespondingAssociationEndMember, out navigationProperty))
{
result = navigationProperty.Name + "." + keyMember.Name;
}
else
{
// if there is no Navigation property, use the TargetTole and KeyMember name
// TargetRole.KeyMember
result = group.End.Name + "." + keyMember.Name;
}
return result;
}
public override string ToString()
{
return String.Format(CultureInfo.InvariantCulture, "<Set = {0}, Role = {1}>",
this.group.End.ParentAssociationSet.Name, this.group.End.Name);
}
internal override object GetValue(EntityDataSourceWrapper entity)
{
EntityKey entityKey = this.Group.GetEntityKey(entity);
if (null == entityKey)
{
return null;
}
else
{
object value = null;
// loop through to find the correct keymember, take compound key into consideration
foreach (EntityKeyMember entityKeyValue in entityKey.EntityKeyValues)
{
if (entityKeyValue.Key == this.KeyMember.Name)
{
value = entityKeyValue.Value;
}
}
return value;
}
}
internal override void SetValue(EntityDataSourceWrapper entity, object value)
{
throw new InvalidOperationException(Strings.SetValueNotSupported);
}
internal override string GetEntitySqlValue()
{
// syntax: NAVIGATE(it, _association_type_name_, _target_role_name_)._key_member_
StringBuilder builder = new StringBuilder();
builder.Append("NAVIGATE(");
builder.Append(EntityDataSourceUtil.EntitySqlElementAlias);
builder.Append(", ");
builder.Append(EntityDataSourceUtil.CreateEntitySqlTypeIdentifier(this.Group.End.ParentAssociationSet.ElementType));
builder.Append(", ");
builder.Append(EntityDataSourceUtil.QuoteEntitySqlIdentifier(this.Group.End.CorrespondingAssociationEndMember.Name));
builder.Append(").");
builder.Append(EntityDataSourceUtil.QuoteEntitySqlIdentifier(this.keyMember.Name));
string result = builder.ToString();
return result;
}
}
internal abstract class EntityDataSourceReferenceValueColumn : EntityDataSourceColumn
{
private readonly NavigationProperty navigationProperty;
protected EntityDataSourceReferenceValueColumn(MetadataWorkspace ocWorkspace, NavigationProperty navigationProperty)
: base(EntityDataSourceUtil.CheckArgumentNull(navigationProperty, "navigationProperty").Name)
{
EntityDataSourceUtil.CheckArgumentNull(ocWorkspace, "ocWorkspace");
this.navigationProperty = navigationProperty;
}
[MethodImpl(MethodImplOptions.NoInlining | MethodImplOptions.NoOptimization)]
internal static EntityDataSourceReferenceValueColumn Create(Type clrToType, MetadataWorkspace ocWorkspace, NavigationProperty navigationProperty)
{
EntityDataSourceUtil.CheckArgumentNull(clrToType, "clrToType");
Type columnType = typeof(EntityDataSourceReferenceValueColumn<>).MakeGenericType(clrToType);
EntityDataSourceReferenceValueColumn result = (EntityDataSourceReferenceValueColumn)Activator.CreateInstance(columnType, ocWorkspace, navigationProperty);
return result;
}
internal override bool CanWrite
{
get
{
// can never write to a navigation reference
return false;
}
}
internal override bool IsNullable
{
get { return navigationProperty.ToEndMember.RelationshipMultiplicity == RelationshipMultiplicity.ZeroOrOne; }
}
protected NavigationProperty NavigationProperty
{
get { return this.navigationProperty; }
}
internal override bool IsScalar
{
get { return false; }
}
internal override string GetEntitySqlValue()
{
// it.NavigationPropertyName
string result = EntityDataSourceUtil.EntitySqlElementAlias + "." + EntityDataSourceUtil.QuoteEntitySqlIdentifier(this.navigationProperty.Name);
return result;
}
internal override bool IsInteresting
{
get
{
// a navigation reference is not written, so its original values aren't interesting
return false;
}
}
internal override void SetValue(EntityDataSourceWrapper entity, object value)
{
throw new InvalidOperationException(Strings.SetValueNotSupported);
}
}
internal class EntityDataSourceReferenceValueColumn<T> : EntityDataSourceReferenceValueColumn
where T : class
{
public EntityDataSourceReferenceValueColumn(MetadataWorkspace ocWorkspace, NavigationProperty navigationProperty)
: base(ocWorkspace, navigationProperty)
{
}
internal override object GetValue(EntityDataSourceWrapper entity)
{
object result;
EntityReference<T> reference = GetRelatedReference(entity);
if (reference.IsLoaded)
{
result = reference.Value;
}
else
{
result = null;
}
return result;
}
internal override Type ClrType
{
get
{
return typeof(T);
}
}
private EntityReference<T> GetRelatedReference(EntityDataSourceWrapper entity)
{
RelationshipManager relationshipManager = entity.RelationshipManager;
Debug.Assert(relationshipManager != null, "Coldn't retrieve a RelationshipManager");
EntityReference<T> reference = relationshipManager.GetRelatedReference<T>(
this.NavigationProperty.RelationshipType.FullName,
this.NavigationProperty.ToEndMember.Name);
return reference;
}
}
}