Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / Orcas / SP / ndp / fx / src / DataSet / System / Data / TypedTableBaseExtensions.cs / 1 / TypedTableBaseExtensions.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //[....] //----------------------------------------------------------------------------- using System; using System.Collections.Generic; using System.Linq; using System.Linq.Expressions; using System.Globalization; using System.Diagnostics; namespace System.Data { ////// This static class defines the extension methods that add LINQ operator functionality /// within IEnumerableDT and IOrderedEnumerableDT. /// public static class TypedTableBaseExtensions { ////// LINQ's Where operator for generic EnumerableRowCollection. /// public static EnumerableRowCollectionWhere ( this TypedTableBase source, Func predicate) where TRow : DataRow { DataSetUtil.CheckArgumentNull(source, "source"); EnumerableRowCollection erc = new EnumerableRowCollection ((DataTable)source); return erc.Where (predicate); } /// /// LINQ's OrderBy operator for generic EnumerableRowCollection. /// public static OrderedEnumerableRowCollectionOrderBy ( this TypedTableBase source, Func keySelector) where TRow : DataRow { DataSetUtil.CheckArgumentNull(source, "source"); EnumerableRowCollection erc = new EnumerableRowCollection ((DataTable)source); return erc.OrderBy (keySelector); } /// /// LINQ's OrderBy operator for generic EnumerableRowCollection. /// public static OrderedEnumerableRowCollectionOrderBy ( this TypedTableBase source, Func keySelector, IComparer comparer) where TRow : DataRow { DataSetUtil.CheckArgumentNull(source, "source"); EnumerableRowCollection erc = new EnumerableRowCollection ((DataTable)source); return erc.OrderBy (keySelector, comparer); } /// /// LINQ's OrderByDescending operator for generic EnumerableRowCollection. /// public static OrderedEnumerableRowCollectionOrderByDescending ( this TypedTableBase source, Func keySelector) where TRow : DataRow { DataSetUtil.CheckArgumentNull(source, "source"); EnumerableRowCollection erc = new EnumerableRowCollection ((DataTable)source); return erc.OrderByDescending (keySelector); } /// /// LINQ's OrderByDescending operator for generic EnumerableRowCollection. /// public static OrderedEnumerableRowCollectionOrderByDescending ( this TypedTableBase source, Func keySelector, IComparer comparer) where TRow : DataRow { DataSetUtil.CheckArgumentNull(source, "source"); EnumerableRowCollection erc = new EnumerableRowCollection ((DataTable)source); return erc.OrderByDescending (keySelector, comparer); } /// /// Executes a Select (Projection) on EnumerableDataTable. If the selector returns a different /// type than the type of rows, then AsLinqDataView is disabled, and the returning EnumerableDataTable /// represents an enumerable over the LINQ Query. /// public static EnumerableRowCollectionSelect( this TypedTableBase source, Func selector) where TRow : DataRow { DataSetUtil.CheckArgumentNull(source, "source"); EnumerableRowCollection erc = new EnumerableRowCollection ((DataTable)source); return erc.Select (selector); } /// /// This method returns a IEnumerable of TRow. /// /// /// The source DataTable to make enumerable. /// ////// IEnumerable of datarows. /// public static EnumerableRowCollectionAsEnumerable (this TypedTableBase source) where TRow : DataRow { DataSetUtil.CheckArgumentNull(source, "source"); return new EnumerableRowCollection (source as DataTable); } } //end class } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //[....] //----------------------------------------------------------------------------- using System; using System.Collections.Generic; using System.Linq; using System.Linq.Expressions; using System.Globalization; using System.Diagnostics; namespace System.Data { ////// This static class defines the extension methods that add LINQ operator functionality /// within IEnumerableDT and IOrderedEnumerableDT. /// public static class TypedTableBaseExtensions { ////// LINQ's Where operator for generic EnumerableRowCollection. /// public static EnumerableRowCollectionWhere ( this TypedTableBase source, Func predicate) where TRow : DataRow { DataSetUtil.CheckArgumentNull(source, "source"); EnumerableRowCollection erc = new EnumerableRowCollection ((DataTable)source); return erc.Where (predicate); } /// /// LINQ's OrderBy operator for generic EnumerableRowCollection. /// public static OrderedEnumerableRowCollectionOrderBy ( this TypedTableBase source, Func keySelector) where TRow : DataRow { DataSetUtil.CheckArgumentNull(source, "source"); EnumerableRowCollection erc = new EnumerableRowCollection ((DataTable)source); return erc.OrderBy (keySelector); } /// /// LINQ's OrderBy operator for generic EnumerableRowCollection. /// public static OrderedEnumerableRowCollectionOrderBy ( this TypedTableBase source, Func keySelector, IComparer comparer) where TRow : DataRow { DataSetUtil.CheckArgumentNull(source, "source"); EnumerableRowCollection erc = new EnumerableRowCollection ((DataTable)source); return erc.OrderBy (keySelector, comparer); } /// /// LINQ's OrderByDescending operator for generic EnumerableRowCollection. /// public static OrderedEnumerableRowCollectionOrderByDescending ( this TypedTableBase source, Func keySelector) where TRow : DataRow { DataSetUtil.CheckArgumentNull(source, "source"); EnumerableRowCollection erc = new EnumerableRowCollection ((DataTable)source); return erc.OrderByDescending (keySelector); } /// /// LINQ's OrderByDescending operator for generic EnumerableRowCollection. /// public static OrderedEnumerableRowCollectionOrderByDescending ( this TypedTableBase source, Func keySelector, IComparer comparer) where TRow : DataRow { DataSetUtil.CheckArgumentNull(source, "source"); EnumerableRowCollection erc = new EnumerableRowCollection ((DataTable)source); return erc.OrderByDescending (keySelector, comparer); } /// /// Executes a Select (Projection) on EnumerableDataTable. If the selector returns a different /// type than the type of rows, then AsLinqDataView is disabled, and the returning EnumerableDataTable /// represents an enumerable over the LINQ Query. /// public static EnumerableRowCollectionSelect( this TypedTableBase source, Func selector) where TRow : DataRow { DataSetUtil.CheckArgumentNull(source, "source"); EnumerableRowCollection erc = new EnumerableRowCollection ((DataTable)source); return erc.Select (selector); } /// /// This method returns a IEnumerable of TRow. /// /// /// The source DataTable to make enumerable. /// ////// IEnumerable of datarows. /// public static EnumerableRowCollectionAsEnumerable (this TypedTableBase source) where TRow : DataRow { DataSetUtil.CheckArgumentNull(source, "source"); return new EnumerableRowCollection (source as DataTable); } } //end class } // 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
- ProxyAttribute.cs
- UnsafeNativeMethods.cs
- ToolStripHighContrastRenderer.cs
- ManagementBaseObject.cs
- SqlConnectionHelper.cs
- ToolStripSplitButton.cs
- GridToolTip.cs
- OracleRowUpdatedEventArgs.cs
- FrameworkContentElementAutomationPeer.cs
- QueryConverter.cs
- AdRotator.cs
- DataGridViewCellFormattingEventArgs.cs
- NameValueConfigurationCollection.cs
- DrawingImage.cs
- ZipIOLocalFileDataDescriptor.cs
- IIS7WorkerRequest.cs
- SignatureConfirmationElement.cs
- XPathItem.cs
- WebPartZoneCollection.cs
- EdmComplexPropertyAttribute.cs
- DataServiceHostWrapper.cs
- TextComposition.cs
- ScrollPattern.cs
- FastEncoderWindow.cs
- CellCreator.cs
- VisualProxy.cs
- CngAlgorithm.cs
- DataServiceExpressionVisitor.cs
- Input.cs
- AnnotationHighlightLayer.cs
- BrowserDefinitionCollection.cs
- EnvironmentPermission.cs
- XmlBinaryReader.cs
- Instrumentation.cs
- CssTextWriter.cs
- AuthenticationModuleElement.cs
- OletxDependentTransaction.cs
- basecomparevalidator.cs
- RegisteredHiddenField.cs
- AppSettingsExpressionBuilder.cs
- UpdateTranslator.cs
- WindowsTreeView.cs
- GlyphRunDrawing.cs
- SslStreamSecurityBindingElement.cs
- FileEnumerator.cs
- TemplatedWizardStep.cs
- ItemType.cs
- CodeDefaultValueExpression.cs
- DiscoveryInnerClientManaged11.cs
- ExpressionNode.cs
- CorrelationQuery.cs
- OdbcConnectionHandle.cs
- Parameter.cs
- EllipseGeometry.cs
- CacheVirtualItemsEvent.cs
- PrivilegedConfigurationManager.cs
- WeakReference.cs
- Transform.cs
- AutoFocusStyle.xaml.cs
- SectionRecord.cs
- RectAnimation.cs
- FilterEventArgs.cs
- ManifestResourceInfo.cs
- StyleModeStack.cs
- MetadataItem_Static.cs
- ScrollChrome.cs
- SplashScreenNativeMethods.cs
- MyContact.cs
- FixedDocumentPaginator.cs
- AndCondition.cs
- SHA512Managed.cs
- NamespaceEmitter.cs
- webproxy.cs
- SubstitutionList.cs
- EqualityComparer.cs
- RegexNode.cs
- LoginUtil.cs
- UndoManager.cs
- BindingMemberInfo.cs
- QueryCursorEventArgs.cs
- ToolZone.cs
- HttpRequest.cs
- NetworkCredential.cs
- JapaneseCalendar.cs
- RemoteWebConfigurationHost.cs
- GlyphInfoList.cs
- BigInt.cs
- Interlocked.cs
- ZipIOLocalFileHeader.cs
- DataService.cs
- AuthenticationModulesSection.cs
- SQLGuid.cs
- SQLInt64Storage.cs
- ExecutionContext.cs
- InternalsVisibleToAttribute.cs
- DataGridColumnsPage.cs
- WebPartChrome.cs
- Clock.cs
- ImpersonateTokenRef.cs
- IResourceProvider.cs