Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / DataEntity / System / Data / Objects / FieldDescriptor.cs / 1305376 / FieldDescriptor.cs
//---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....] // @backupOwner [....] //--------------------------------------------------------------------- using System; using System.Collections; using System.Collections.Generic; using System.ComponentModel; using System.Data.Common; using System.Data.Objects.DataClasses; using System.Data.Metadata.Edm; using System.Diagnostics; using System.Globalization; namespace System.Data.Objects { internal sealed class FieldDescriptor : PropertyDescriptor { private readonly EdmProperty _property; private readonly Type _fieldType; private readonly Type _componentType; private readonly bool _isReadOnly; ////// Construct a new instance of the FieldDescriptor class that describes a property /// on components of the supplied type. /// /// Type of object whose property is described by this FieldDescriptor. /// /// True if property value on component can be modified; otherwise false. /// /// /// EdmProperty that describes the property on the component. /// internal FieldDescriptor(Type componentType, bool isReadOnly, EdmProperty property) : base(property.Name, null) { _componentType = componentType; _property = property; _isReadOnly = isReadOnly; _fieldType = DetermineClrType(_property.TypeUsage); System.Diagnostics.Debug.Assert(_fieldType != null, "FieldDescriptor's CLR type has unexpected value of null."); } ////// Determine a CLR Type to use a property descriptro form an EDM TypeUsage /// /// The EDM TypeUsage containing metadata about the type ///A CLR type that represents that EDM type private Type DetermineClrType(TypeUsage typeUsage) { Type result = null; EdmType edmType = typeUsage.EdmType; switch (edmType.BuiltInTypeKind) { case BuiltInTypeKind.EntityType: case BuiltInTypeKind.ComplexType: result = edmType.ClrType; break; case BuiltInTypeKind.RefType: result = typeof(EntityKey); break; case BuiltInTypeKind.CollectionType: TypeUsage elementTypeUse = ((CollectionType)edmType).TypeUsage; result = DetermineClrType(elementTypeUse); result = typeof(IEnumerable<>).MakeGenericType(result); break; case BuiltInTypeKind.PrimitiveType: result = edmType.ClrType; Facet nullable; if (result.IsValueType && typeUsage.Facets.TryGetValue(DbProviderManifest.NullableFacetName, false, out nullable) && ((bool)nullable.Value)) { result = typeof(Nullable<>).MakeGenericType(result); } break; case BuiltInTypeKind.RowType: result = typeof(IDataRecord); break; default: Debug.Fail(string.Format(CultureInfo.CurrentCulture, "The type {0} was not the expected scalar, enumeration, collection, structural, nominal, or reference type.", edmType.GetType())); break; } return result; } ////// Get ///instance associated with this field descriptor. /// /// The internal EdmProperty EdmProperty { get { return _property; } } public override Type ComponentType { get { return _componentType; } } public override bool IsReadOnly { get { return _isReadOnly; } } public override Type PropertyType { get { return _fieldType; } } public override bool CanResetValue(object component) { return false; } public override object GetValue(object component) { EntityUtil.CheckArgumentNull(component, "component"); if (!_componentType.IsAssignableFrom(component.GetType())) { throw EntityUtil.IncompatibleArgument(); } object propertyValue; DbDataRecord dbDataRecord = component as DbDataRecord; if (dbDataRecord != null) { propertyValue = (dbDataRecord.GetValue(dbDataRecord.GetOrdinal(_property.Name))); } else { propertyValue = LightweightCodeGenerator.GetValue(_property, component); } return propertyValue; } public override void ResetValue(object component) { throw EntityUtil.NotSupported(); } public override void SetValue(object component, object value) { EntityUtil.CheckArgumentNull(component, "component"); if (!_componentType.IsAssignableFrom(component.GetType())) { throw EntityUtil.IncompatibleArgument(); } if (!_isReadOnly) { LightweightCodeGenerator.SetValue(_property, component, value); } // if not entity it must be readonly else { throw EntityUtil.WriteOperationNotAllowedOnReadOnlyBindingList(); } } public override bool ShouldSerializeValue(object component) { return false; } public override bool IsBrowsable { get { return true; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //---------------------------------------------------------------------- //instance associated with this field descriptor, /// or null if there is no EDM property association. /// // Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....] // @backupOwner [....] //--------------------------------------------------------------------- using System; using System.Collections; using System.Collections.Generic; using System.ComponentModel; using System.Data.Common; using System.Data.Objects.DataClasses; using System.Data.Metadata.Edm; using System.Diagnostics; using System.Globalization; namespace System.Data.Objects { internal sealed class FieldDescriptor : PropertyDescriptor { private readonly EdmProperty _property; private readonly Type _fieldType; private readonly Type _componentType; private readonly bool _isReadOnly; ////// Construct a new instance of the FieldDescriptor class that describes a property /// on components of the supplied type. /// /// Type of object whose property is described by this FieldDescriptor. /// /// True if property value on component can be modified; otherwise false. /// /// /// EdmProperty that describes the property on the component. /// internal FieldDescriptor(Type componentType, bool isReadOnly, EdmProperty property) : base(property.Name, null) { _componentType = componentType; _property = property; _isReadOnly = isReadOnly; _fieldType = DetermineClrType(_property.TypeUsage); System.Diagnostics.Debug.Assert(_fieldType != null, "FieldDescriptor's CLR type has unexpected value of null."); } ////// Determine a CLR Type to use a property descriptro form an EDM TypeUsage /// /// The EDM TypeUsage containing metadata about the type ///A CLR type that represents that EDM type private Type DetermineClrType(TypeUsage typeUsage) { Type result = null; EdmType edmType = typeUsage.EdmType; switch (edmType.BuiltInTypeKind) { case BuiltInTypeKind.EntityType: case BuiltInTypeKind.ComplexType: result = edmType.ClrType; break; case BuiltInTypeKind.RefType: result = typeof(EntityKey); break; case BuiltInTypeKind.CollectionType: TypeUsage elementTypeUse = ((CollectionType)edmType).TypeUsage; result = DetermineClrType(elementTypeUse); result = typeof(IEnumerable<>).MakeGenericType(result); break; case BuiltInTypeKind.PrimitiveType: result = edmType.ClrType; Facet nullable; if (result.IsValueType && typeUsage.Facets.TryGetValue(DbProviderManifest.NullableFacetName, false, out nullable) && ((bool)nullable.Value)) { result = typeof(Nullable<>).MakeGenericType(result); } break; case BuiltInTypeKind.RowType: result = typeof(IDataRecord); break; default: Debug.Fail(string.Format(CultureInfo.CurrentCulture, "The type {0} was not the expected scalar, enumeration, collection, structural, nominal, or reference type.", edmType.GetType())); break; } return result; } ////// Get ///instance associated with this field descriptor. /// /// The internal EdmProperty EdmProperty { get { return _property; } } public override Type ComponentType { get { return _componentType; } } public override bool IsReadOnly { get { return _isReadOnly; } } public override Type PropertyType { get { return _fieldType; } } public override bool CanResetValue(object component) { return false; } public override object GetValue(object component) { EntityUtil.CheckArgumentNull(component, "component"); if (!_componentType.IsAssignableFrom(component.GetType())) { throw EntityUtil.IncompatibleArgument(); } object propertyValue; DbDataRecord dbDataRecord = component as DbDataRecord; if (dbDataRecord != null) { propertyValue = (dbDataRecord.GetValue(dbDataRecord.GetOrdinal(_property.Name))); } else { propertyValue = LightweightCodeGenerator.GetValue(_property, component); } return propertyValue; } public override void ResetValue(object component) { throw EntityUtil.NotSupported(); } public override void SetValue(object component, object value) { EntityUtil.CheckArgumentNull(component, "component"); if (!_componentType.IsAssignableFrom(component.GetType())) { throw EntityUtil.IncompatibleArgument(); } if (!_isReadOnly) { LightweightCodeGenerator.SetValue(_property, component, value); } // if not entity it must be readonly else { throw EntityUtil.WriteOperationNotAllowedOnReadOnlyBindingList(); } } public override bool ShouldSerializeValue(object component) { return false; } public override bool IsBrowsable { get { return true; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.instance associated with this field descriptor, /// or null if there is no EDM property association. ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- Stopwatch.cs
- StorageFunctionMapping.cs
- RemotingConfigParser.cs
- HtmlInputRadioButton.cs
- TraceSwitch.cs
- DataGridViewRowStateChangedEventArgs.cs
- OdbcEnvironment.cs
- InputMethod.cs
- QilReplaceVisitor.cs
- Point3DKeyFrameCollection.cs
- AssociationSet.cs
- BeginEvent.cs
- CheckBoxField.cs
- PerformanceCounterManager.cs
- HWStack.cs
- ContainerAction.cs
- CapabilitiesUse.cs
- Deflater.cs
- DocumentViewerBaseAutomationPeer.cs
- SimpleParser.cs
- QilSortKey.cs
- AdapterDictionary.cs
- CodeGotoStatement.cs
- BypassElement.cs
- FontCacheUtil.cs
- HashHelper.cs
- OperationCanceledException.cs
- input.cs
- AvTraceFormat.cs
- PageRanges.cs
- QueryTask.cs
- CriticalFinalizerObject.cs
- UpdateTracker.cs
- SettingsPropertyIsReadOnlyException.cs
- BasicHttpSecurityMode.cs
- SessionParameter.cs
- dataSvcMapFileLoader.cs
- TextEditorContextMenu.cs
- StringFreezingAttribute.cs
- ImageList.cs
- ZipPackage.cs
- CacheDependency.cs
- Currency.cs
- FileLevelControlBuilderAttribute.cs
- TriggerAction.cs
- base64Transforms.cs
- Thread.cs
- PresentationUIStyleResources.cs
- DocumentViewerAutomationPeer.cs
- PropertyInformationCollection.cs
- ClientRoleProvider.cs
- PageAsyncTaskManager.cs
- DbConvert.cs
- CompilerErrorCollection.cs
- WindowsRegion.cs
- XmlSignificantWhitespace.cs
- SHA1Managed.cs
- StyleXamlParser.cs
- DataGridViewComboBoxEditingControl.cs
- Pair.cs
- InfoCardRSACryptoProvider.cs
- AllMembershipCondition.cs
- SelectedGridItemChangedEvent.cs
- DESCryptoServiceProvider.cs
- QueryCacheEntry.cs
- NotifyInputEventArgs.cs
- Perspective.cs
- QilXmlReader.cs
- X509WindowsSecurityToken.cs
- Latin1Encoding.cs
- LayoutEditorPart.cs
- CommandDevice.cs
- SchemaImporter.cs
- IRCollection.cs
- IntSecurity.cs
- PresentationSource.cs
- TransformerTypeCollection.cs
- ViewEventArgs.cs
- AxDesigner.cs
- IPHostEntry.cs
- SchemaObjectWriter.cs
- Attributes.cs
- CommunicationObjectManager.cs
- Metadata.cs
- StylusEventArgs.cs
- ListViewContainer.cs
- FrameworkContentElement.cs
- ReaderWriterLock.cs
- WebPartConnectionsDisconnectVerb.cs
- ToolboxBitmapAttribute.cs
- IImplicitResourceProvider.cs
- MetadataFile.cs
- TableChangeProcessor.cs
- RC2.cs
- UiaCoreProviderApi.cs
- KnownTypesHelper.cs
- ConfigurationStrings.cs
- BitmapEffectGroup.cs
- TextPenaltyModule.cs
- BufferedGraphicsContext.cs