forked from microsoft/referencesource
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEntityDataSourceMemberPath.cs
More file actions
205 lines (175 loc) · 6.75 KB
/
EntityDataSourceMemberPath.cs
File metadata and controls
205 lines (175 loc) · 6.75 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
//---------------------------------------------------------------------
// <copyright file="EntityDataSourceMemberPath.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.Data.Common;
using System.Data.Objects;
namespace System.Web.UI.WebControls
{
/// <summary>
/// A glorified linked list. Describes a chain of properties from a primitive
/// type to a root entity.
/// </summary>
class EntityDataSourceMemberPath
{
private readonly EdmProperty property;
private readonly PropertyInfo propertyInfo;
private readonly EntityDataSourceMemberPath parent;
private readonly bool isLocallyInteresting;
private readonly Type clrType;
private readonly bool isKey;
internal EntityDataSourceMemberPath(MetadataWorkspace ocWorkspace, EntityDataSourceMemberPath parent, EdmProperty property, bool isLocallyInteresting)
{
EntityDataSourceUtil.CheckArgumentNull(ocWorkspace, "ocWorkspace");
EntityDataSourceUtil.CheckArgumentNull(property, "property");
this.property = property;
this.parent = parent;
this.isLocallyInteresting = isLocallyInteresting;
this.clrType = EntityDataSourceUtil.GetMemberClrType(ocWorkspace, property);
this.isKey = IsPropertyAKey(property);
// retrieve PropertyInfo (with respect to parent CLR type)
StructuralType parentType = property.DeclaringType;
Type parentClrType = EntityDataSourceUtil.GetClrType(ocWorkspace, parentType);
this.propertyInfo = EntityDataSourceUtil.GetPropertyInfo(parentClrType, this.property.Name);
}
/// <summary>
/// Describes the member path in the form 'property1.property2...'. Use to
/// determine display name for nested properties in the EDSC.
/// </summary>
/// <returns>Description of the </returns>
internal string GetDescription()
{
string prefix = null == this.parent ? string.Empty : this.parent.GetDescription() + ".";
return prefix + this.property.Name;
}
/// <summary>
/// Indicates whether original values of this member should be preserved.
/// </summary>
internal bool IsInteresting
{
get
{
// a member path is interesting if anything along the path is interesting
return this.isLocallyInteresting || (null != this.parent && this.parent.IsInteresting);
}
}
/// <summary>
/// Indicates whether this member represents a primary key value.
/// </summary>
internal bool IsKey
{
get { return this.isKey; }
}
/// <summary>
/// Indicates whether this member can be assigned a value of null.
/// </summary>
internal bool IsNullable
{
get { return this.property.Nullable; }
}
internal bool IsScalar
{
get { return EntityDataSourceUtil.IsScalar(this.property.TypeUsage.EdmType); }
}
/// <summary>
/// Gets the CLR type of the last member in the path.
/// </summary>
internal Type ClrType
{
get { return this.clrType; }
}
internal object GetValue(EntityDataSourceWrapper entity)
{
object parentObjectValue = GetParentObjectValue(entity, false /* initialize */);
if (null == parentObjectValue)
{
// use convention that property of null is null
return null;
}
else
{
// get this property
object propertyValue = this.propertyInfo.GetValue(parentObjectValue, new object[] { });
return propertyValue;
}
}
internal void SetValue(EntityDataSourceWrapper entity, object value)
{
object parentObjectValue = GetParentObjectValue(entity, true /* initialize */);
// set property value on parent
this.propertyInfo.SetValue(parentObjectValue, value, new object[] { });
}
private object Initialize(EntityDataSourceWrapper entity)
{
// get parent's value
object parentObjectValue = GetParentObjectValue(entity, true /* initialize */);
// construct type instance for this property
object propertyValue = EntityDataSourceUtil.InitializeType(this.ClrType);
// set property
this.propertyInfo.SetValue(parentObjectValue, propertyValue, new object[] { });
return propertyValue;
}
private object GetParentObjectValue(EntityDataSourceWrapper entity, bool initialize)
{
// get parent's value
object parentObjectValue;
if (null == this.parent)
{
// at the top level, the entity is the value
parentObjectValue = entity.WrappedEntity;
}
else
{
parentObjectValue = this.parent.GetValue(entity);
if (null == parentObjectValue && initialize)
{
parentObjectValue = this.parent.Initialize(entity);
}
}
return parentObjectValue;
}
internal string GetEntitySqlValue()
{
// it.[member1].[member2]...
string prefix;
if (null != parent)
{
prefix = parent.GetEntitySqlValue();
}
else
{
prefix = EntityDataSourceUtil.EntitySqlElementAlias;
}
string eSql = prefix + "." + EntityDataSourceUtil.QuoteEntitySqlIdentifier(this.property.Name);
return eSql;
}
private bool IsPropertyAKey(EdmProperty property)
{
bool isKey = false;
EntityType entityType = property.DeclaringType as EntityType;
if (null != entityType)
{
isKey = entityType.KeyMembers.Contains(property);
}
return isKey;
}
public override string ToString()
{
string prefix = null == this.parent ? string.Empty : this.parent.ToString() + "->";
return prefix + this.property.Name;
}
}
}