Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / Orcas / NetFXw7 / ndp / fx / src / DataWebControls / System / Data / WebControls / EntityDataSourceViewSchema.cs / 1 / EntityDataSourceViewSchema.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; using System.Data.Entity; using System.Data.Metadata.Edm; using System.Diagnostics; using System.Linq; using System.Text; using System.Reflection; namespace System.Web.UI.WebControls { internal class EntityDataSourceViewSchema : DataTable { internal EntityDataSourceViewSchema(EntityDataSourceWrapperCollection wrappers) { DataColumn column; Listkeys = new List (); PropertyDescriptorCollection properties = wrappers.GetItemProperties(null); MetadataWorkspace workspace = wrappers.Context.MetadataWorkspace; foreach (EntityDataSourceWrapperPropertyDescriptor property in properties) { Type propertyType = property.PropertyType; column = ConstructColumn(property); column.AllowDBNull = property.Column.IsNullable; EntityDataSourcePropertyColumn propertyColumn = property.Column as EntityDataSourcePropertyColumn; if (null!= propertyColumn && propertyColumn.IsKey) { keys.Add(column); } Columns.Add(column); } this.PrimaryKey = keys.ToArray(); } internal EntityDataSourceViewSchema(ITypedList typedList) { PropertyDescriptorCollection properties = typedList.GetItemProperties(null); CreateColumnsFromPropDescs(properties); } internal EntityDataSourceViewSchema(IEnumerable results) { Type type = GetListItemType(results.GetType()); PropertyInfo[] infos = type.GetProperties(BindingFlags.Public | BindingFlags.Instance); PropertyDescriptorCollection properties = TypeDescriptor.GetProperties(type); CreateColumnsFromPropDescs(properties); } private void CreateColumnsFromPropDescs(PropertyDescriptorCollection properties) { foreach (PropertyDescriptor property in properties) { System.ComponentModel.BrowsableAttribute attr = (System.ComponentModel.BrowsableAttribute)property.Attributes[typeof(System.ComponentModel.BrowsableAttribute)]; if (attr.Browsable) { DataColumn column = ConstructColumn(property); this.Columns.Add(column); } } } private static DataColumn ConstructColumn(PropertyDescriptor property) { DataColumn column = new DataColumn(); column.ColumnName = property.Name; Type propertyType = property.PropertyType; if (propertyType.IsGenericType && propertyType.GetGenericTypeDefinition() == typeof(Nullable<>)) { Type[] typeArguments = propertyType.GetGenericArguments(); Debug.Assert(typeArguments.Length == 1, "should only have one type argument from Nullable<> condition."); column.DataType = typeArguments[0]; column.AllowDBNull = true; } else { column.DataType = propertyType; column.AllowDBNull = !propertyType.IsValueType; } column.ReadOnly = property.IsReadOnly; column.Unique = false; column.AutoIncrement = false; column.MaxLength = -1; return column; } // see System.Data.Objects.DataRecordObjectView.cs private static PropertyInfo GetTypedIndexer(Type type) { PropertyInfo indexer = null; if (typeof(IList).IsAssignableFrom(type) || typeof(ITypedList).IsAssignableFrom(type) || typeof(IListSource).IsAssignableFrom(type)) { System.Reflection.PropertyInfo[] props = type.GetProperties(BindingFlags.Public | BindingFlags.Instance); for (int idx = 0; idx < props.Length; idx++) { if (props[idx].GetIndexParameters().Length > 0 && props[idx].PropertyType != typeof(object)) { indexer = props[idx]; //Prefer the standard indexer, if there is one if (indexer.Name == "Item") { break; } } } } return indexer; } // see System.Data.Objects.DataRecordObjectView.cs private static Type GetListItemType(Type type) { Type itemType; if (typeof(Array).IsAssignableFrom(type)) { itemType = type.GetElementType(); } else { PropertyInfo typedIndexer = GetTypedIndexer(type); if (typedIndexer != null) { itemType = typedIndexer.PropertyType; } else { itemType = type; } } return itemType; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //---------------------------------------------------------------------- // // Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....] // @backupOwner [....] //--------------------------------------------------------------------- using System; using System.Collections; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Data.Entity; using System.Data.Metadata.Edm; using System.Diagnostics; using System.Linq; using System.Text; using System.Reflection; namespace System.Web.UI.WebControls { internal class EntityDataSourceViewSchema : DataTable { internal EntityDataSourceViewSchema(EntityDataSourceWrapperCollection wrappers) { DataColumn column; Listkeys = new List (); PropertyDescriptorCollection properties = wrappers.GetItemProperties(null); MetadataWorkspace workspace = wrappers.Context.MetadataWorkspace; foreach (EntityDataSourceWrapperPropertyDescriptor property in properties) { Type propertyType = property.PropertyType; column = ConstructColumn(property); column.AllowDBNull = property.Column.IsNullable; EntityDataSourcePropertyColumn propertyColumn = property.Column as EntityDataSourcePropertyColumn; if (null!= propertyColumn && propertyColumn.IsKey) { keys.Add(column); } Columns.Add(column); } this.PrimaryKey = keys.ToArray(); } internal EntityDataSourceViewSchema(ITypedList typedList) { PropertyDescriptorCollection properties = typedList.GetItemProperties(null); CreateColumnsFromPropDescs(properties); } internal EntityDataSourceViewSchema(IEnumerable results) { Type type = GetListItemType(results.GetType()); PropertyInfo[] infos = type.GetProperties(BindingFlags.Public | BindingFlags.Instance); PropertyDescriptorCollection properties = TypeDescriptor.GetProperties(type); CreateColumnsFromPropDescs(properties); } private void CreateColumnsFromPropDescs(PropertyDescriptorCollection properties) { foreach (PropertyDescriptor property in properties) { System.ComponentModel.BrowsableAttribute attr = (System.ComponentModel.BrowsableAttribute)property.Attributes[typeof(System.ComponentModel.BrowsableAttribute)]; if (attr.Browsable) { DataColumn column = ConstructColumn(property); this.Columns.Add(column); } } } private static DataColumn ConstructColumn(PropertyDescriptor property) { DataColumn column = new DataColumn(); column.ColumnName = property.Name; Type propertyType = property.PropertyType; if (propertyType.IsGenericType && propertyType.GetGenericTypeDefinition() == typeof(Nullable<>)) { Type[] typeArguments = propertyType.GetGenericArguments(); Debug.Assert(typeArguments.Length == 1, "should only have one type argument from Nullable<> condition."); column.DataType = typeArguments[0]; column.AllowDBNull = true; } else { column.DataType = propertyType; column.AllowDBNull = !propertyType.IsValueType; } column.ReadOnly = property.IsReadOnly; column.Unique = false; column.AutoIncrement = false; column.MaxLength = -1; return column; } // see System.Data.Objects.DataRecordObjectView.cs private static PropertyInfo GetTypedIndexer(Type type) { PropertyInfo indexer = null; if (typeof(IList).IsAssignableFrom(type) || typeof(ITypedList).IsAssignableFrom(type) || typeof(IListSource).IsAssignableFrom(type)) { System.Reflection.PropertyInfo[] props = type.GetProperties(BindingFlags.Public | BindingFlags.Instance); for (int idx = 0; idx < props.Length; idx++) { if (props[idx].GetIndexParameters().Length > 0 && props[idx].PropertyType != typeof(object)) { indexer = props[idx]; //Prefer the standard indexer, if there is one if (indexer.Name == "Item") { break; } } } } return indexer; } // see System.Data.Objects.DataRecordObjectView.cs private static Type GetListItemType(Type type) { Type itemType; if (typeof(Array).IsAssignableFrom(type)) { itemType = type.GetElementType(); } else { PropertyInfo typedIndexer = GetTypedIndexer(type); if (typedIndexer != null) { itemType = typedIndexer.PropertyType; } else { itemType = type; } } return itemType; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ZoneMembershipCondition.cs
- CodeMethodInvokeExpression.cs
- StylusPointDescription.cs
- TypePresenter.xaml.cs
- SafeFileMapViewHandle.cs
- DataListItemCollection.cs
- ScrollBar.cs
- DataSourceConverter.cs
- CompositeControl.cs
- Nullable.cs
- CopyOnWriteList.cs
- BaseCodePageEncoding.cs
- TextDecorationCollectionConverter.cs
- SimplePropertyEntry.cs
- CachedCompositeFamily.cs
- RecordManager.cs
- StoreItemCollection.cs
- SatelliteContractVersionAttribute.cs
- WindowsToolbarItemAsMenuItem.cs
- updateconfighost.cs
- DecryptedHeader.cs
- DataGridParentRows.cs
- QueryActivatableWorkflowsCommand.cs
- RowSpanVector.cs
- ProgressBarBrushConverter.cs
- X509PeerCertificateElement.cs
- InputScope.cs
- ClrPerspective.cs
- XmlQuerySequence.cs
- __Error.cs
- Utils.cs
- FunctionCommandText.cs
- ConsumerConnectionPointCollection.cs
- ManagedWndProcTracker.cs
- MailMessageEventArgs.cs
- OuterGlowBitmapEffect.cs
- HtmlTableCell.cs
- DefaultTextStoreTextComposition.cs
- XmlQueryCardinality.cs
- SafeEventHandle.cs
- selecteditemcollection.cs
- QueueProcessor.cs
- Rfc2898DeriveBytes.cs
- Block.cs
- BindingListCollectionView.cs
- ToolboxBitmapAttribute.cs
- ExtendedPropertyCollection.cs
- ProcessModuleCollection.cs
- ObjectListCommandsPage.cs
- TextServicesContext.cs
- HtmlElement.cs
- ColorMatrix.cs
- Int16AnimationUsingKeyFrames.cs
- TypedRowGenerator.cs
- PlatformNotSupportedException.cs
- GraphicsPath.cs
- NavigationWindowAutomationPeer.cs
- Base64Stream.cs
- RayHitTestParameters.cs
- ActivityPreviewDesigner.cs
- DataServiceProcessingPipelineEventArgs.cs
- AnonymousIdentificationSection.cs
- WhitespaceSignificantCollectionAttribute.cs
- RowCache.cs
- ConnectionPoolManager.cs
- RoutedEventValueSerializer.cs
- CodeGotoStatement.cs
- DocumentScope.cs
- Validator.cs
- HtmlContainerControl.cs
- MetadataItem.cs
- KeyboardNavigation.cs
- DataColumnPropertyDescriptor.cs
- CharacterMetrics.cs
- CheckBoxList.cs
- CompoundFileReference.cs
- StretchValidation.cs
- StringKeyFrameCollection.cs
- ObjectDataSourceFilteringEventArgs.cs
- DataGridViewSelectedCellCollection.cs
- BaseProcessor.cs
- VerticalAlignConverter.cs
- EncryptedPackage.cs
- listviewsubitemcollectioneditor.cs
- CodeAccessSecurityEngine.cs
- MessageQueueConverter.cs
- DataGridColumnReorderingEventArgs.cs
- BasePattern.cs
- MethodImplAttribute.cs
- LinearGradientBrush.cs
- HttpRequestCacheValidator.cs
- TargetConverter.cs
- StyleCollectionEditor.cs
- SplineKeyFrames.cs
- HttpFormatExtensions.cs
- FacetValues.cs
- TraceLevelHelper.cs
- ScriptingAuthenticationServiceSection.cs
- MaskedTextBox.cs
- TextBox.cs