Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / DynamicData / DynamicData / DynamicRouteExpression.cs / 1305376 / DynamicRouteExpression.cs
using System.Collections; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Web.DynamicData.Util; using System.Web.UI; using System.Web.UI.WebControls; using System.Diagnostics; #if ORYX_VNEXT using Microsoft.Web.Data.UI.WebControls.Expressions; using Microsoft.Web.Data.UI.WebControls; #else using System.Web.UI.WebControls.Expressions; #endif namespace System.Web.DynamicData { ////// This class is an QueryExtender-based equivalent of DynamicQueryStringParameters. /// When applied to a data source it will filter the data by the value of a primary key encoded /// in the requests query string (or potentially routing if complex routes are used). If ColumnName /// is specified it will retrieve the values /// public class DynamicRouteExpression : DataSourceExpression { private PropertyExpression _expression = new PropertyExpression(); ////// An optional column name that can be used to change the filtering mode (i.e. filter by foreign key instead /// of primary key). /// [DefaultValue("")] public string ColumnName { get; set; } ////// See base class. /// public override void SetContext(Control owner, HttpContext context, IQueryableDataSource dataSource) { base.SetContext(owner, context, dataSource); owner.Page.InitComplete += new EventHandler(Page_InitComplete); } void Page_InitComplete(object sender, EventArgs e) { Debug.Assert(DataSource != null); var table = DataSource.GetMetaTable(); IEnumerableparameters = RouteParametersHelper.GetColumnParameters(table, ColumnName); parameters.ToList().ForEach(p => _expression.Parameters.Add(p)); } /// /// See base class. /// public override IQueryable GetQueryable(IQueryable source) { return _expression.GetQueryable(source); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. using System.Collections; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Web.DynamicData.Util; using System.Web.UI; using System.Web.UI.WebControls; using System.Diagnostics; #if ORYX_VNEXT using Microsoft.Web.Data.UI.WebControls.Expressions; using Microsoft.Web.Data.UI.WebControls; #else using System.Web.UI.WebControls.Expressions; #endif namespace System.Web.DynamicData { ////// This class is an QueryExtender-based equivalent of DynamicQueryStringParameters. /// When applied to a data source it will filter the data by the value of a primary key encoded /// in the requests query string (or potentially routing if complex routes are used). If ColumnName /// is specified it will retrieve the values /// public class DynamicRouteExpression : DataSourceExpression { private PropertyExpression _expression = new PropertyExpression(); ////// An optional column name that can be used to change the filtering mode (i.e. filter by foreign key instead /// of primary key). /// [DefaultValue("")] public string ColumnName { get; set; } ////// See base class. /// public override void SetContext(Control owner, HttpContext context, IQueryableDataSource dataSource) { base.SetContext(owner, context, dataSource); owner.Page.InitComplete += new EventHandler(Page_InitComplete); } void Page_InitComplete(object sender, EventArgs e) { Debug.Assert(DataSource != null); var table = DataSource.GetMetaTable(); IEnumerableparameters = RouteParametersHelper.GetColumnParameters(table, ColumnName); parameters.ToList().ForEach(p => _expression.Parameters.Add(p)); } /// /// See base class. /// public override IQueryable GetQueryable(IQueryable source) { return _expression.GetQueryable(source); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu
This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ListItemParagraph.cs
- DocumentPaginator.cs
- TypedMessageConverter.cs
- XmlSchemaAttributeGroupRef.cs
- XmlKeywords.cs
- ToolboxItemWrapper.cs
- OrderedDictionaryStateHelper.cs
- AccessorTable.cs
- ScrollItemProviderWrapper.cs
- DistributedTransactionPermission.cs
- DataTemplateKey.cs
- GraphicsPath.cs
- PropertyPathConverter.cs
- LingerOption.cs
- Catch.cs
- DesignerVerbCollection.cs
- RangeBase.cs
- ListBox.cs
- SqlNotificationEventArgs.cs
- VectorCollection.cs
- OutOfMemoryException.cs
- ReferenceConverter.cs
- WaitHandle.cs
- PopupRootAutomationPeer.cs
- WithParamAction.cs
- EntityDataSourceValidationException.cs
- ReadOnlyNameValueCollection.cs
- DataSourceConverter.cs
- XmlReflectionImporter.cs
- COM2ExtendedUITypeEditor.cs
- CallTemplateAction.cs
- InkCanvas.cs
- CursorConverter.cs
- ExtensibleClassFactory.cs
- ColumnHeader.cs
- CodeExpressionCollection.cs
- ExceptionNotification.cs
- IgnorePropertiesAttribute.cs
- HttpDebugHandler.cs
- ButtonStandardAdapter.cs
- CodeVariableDeclarationStatement.cs
- SmtpNetworkElement.cs
- Timer.cs
- Popup.cs
- HttpClientChannel.cs
- CaseInsensitiveHashCodeProvider.cs
- SqlParameterizer.cs
- BezierSegment.cs
- DispatcherSynchronizationContext.cs
- FusionWrap.cs
- BrowserDefinitionCollection.cs
- RelationshipFixer.cs
- DelegatingTypeDescriptionProvider.cs
- ComponentTray.cs
- TextStore.cs
- XhtmlBasicPageAdapter.cs
- FolderBrowserDialog.cs
- ManipulationInertiaStartingEventArgs.cs
- TargetConverter.cs
- ListItemConverter.cs
- ClientBuildManagerCallback.cs
- ListView.cs
- WebServiceFault.cs
- CalendarAutomationPeer.cs
- FileSecurity.cs
- GridViewRowEventArgs.cs
- TextContainerChangedEventArgs.cs
- CallTemplateAction.cs
- PolyLineSegment.cs
- ItemCollection.cs
- Utilities.cs
- WsatEtwTraceListener.cs
- TextPatternIdentifiers.cs
- ImageField.cs
- RawAppCommandInputReport.cs
- GetReadStreamResult.cs
- precedingquery.cs
- BCryptNative.cs
- SmtpFailedRecipientsException.cs
- RenameRuleObjectDialog.cs
- SvcMapFile.cs
- CallContext.cs
- InstalledFontCollection.cs
- DrawingBrush.cs
- DataGridViewRowHeightInfoPushedEventArgs.cs
- PropertyEmitter.cs
- _UncName.cs
- BindingMemberInfo.cs
- dsa.cs
- RestHandler.cs
- PlainXmlSerializer.cs
- ConstraintCollection.cs
- FigureHelper.cs
- HostingEnvironment.cs
- XAMLParseException.cs
- HtmlInputReset.cs
- PathNode.cs
- WsatProxy.cs
- PerformanceCounterPermissionEntryCollection.cs
- RegexWriter.cs