Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / Orcas / SP / ndp / fx / src / DLinq / Dlinq / SqlClient / Common / Expressions.cs / 1 / Expressions.cs
using System; using System.Collections.Generic; using System.Data; using System.Data.SqlClient; using System.Linq.Expressions; using System.Linq; using System.Reflection; using System.Text; using System.Data.Linq; namespace System.Data.Linq.SqlClient { // SQL Client extensions to ExpressionType internal enum InternalExpressionType { Known = 2000, LinkedTable = 2001 } abstract internal class InternalExpression : Expression { internal InternalExpression(InternalExpressionType nt, Type type) : base ((ExpressionType)nt, type) { } internal static KnownExpression Known(SqlExpression expr) { return new KnownExpression(expr, expr.ClrType); } internal static KnownExpression Known(SqlNode node, Type type) { return new KnownExpression(node, type); } } internal sealed class KnownExpression : InternalExpression { SqlNode node; internal KnownExpression(SqlNode node, Type type) : base(InternalExpressionType.Known, type) { this.node = node; } internal SqlNode Node { get { return this.node; } } } internal sealed class LinkedTableExpression : InternalExpression { private SqlLink link; private ITable table; internal LinkedTableExpression(SqlLink link, ITable table, Type type) : base(InternalExpressionType.LinkedTable, type) { this.link = link; this.table = table; } internal SqlLink Link { get {return this.link;} } internal ITable Table { get {return this.table;} } } } // 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.Data; using System.Data.SqlClient; using System.Linq.Expressions; using System.Linq; using System.Reflection; using System.Text; using System.Data.Linq; namespace System.Data.Linq.SqlClient { // SQL Client extensions to ExpressionType internal enum InternalExpressionType { Known = 2000, LinkedTable = 2001 } abstract internal class InternalExpression : Expression { internal InternalExpression(InternalExpressionType nt, Type type) : base ((ExpressionType)nt, type) { } internal static KnownExpression Known(SqlExpression expr) { return new KnownExpression(expr, expr.ClrType); } internal static KnownExpression Known(SqlNode node, Type type) { return new KnownExpression(node, type); } } internal sealed class KnownExpression : InternalExpression { SqlNode node; internal KnownExpression(SqlNode node, Type type) : base(InternalExpressionType.Known, type) { this.node = node; } internal SqlNode Node { get { return this.node; } } } internal sealed class LinkedTableExpression : InternalExpression { private SqlLink link; private ITable table; internal LinkedTableExpression(SqlLink link, ITable table, Type type) : base(InternalExpressionType.LinkedTable, type) { this.link = link; this.table = table; } internal SqlLink Link { get {return this.link;} } internal ITable Table { get {return this.table;} } } } // 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
- UnsafeNetInfoNativeMethods.cs
- StaticTextPointer.cs
- xmlglyphRunInfo.cs
- BlurBitmapEffect.cs
- SynchronousReceiveBehavior.cs
- _IPv4Address.cs
- AmbientLight.cs
- VScrollBar.cs
- updateconfighost.cs
- XmlNodeList.cs
- QueryableFilterRepeater.cs
- CounterSet.cs
- CompiledQuery.cs
- KeySpline.cs
- MetadataCacheItem.cs
- Hash.cs
- PrintDialog.cs
- GridLengthConverter.cs
- XmlTextReaderImplHelpers.cs
- GC.cs
- Parser.cs
- HostedElements.cs
- PtsHelper.cs
- BaseHashHelper.cs
- WindowsSpinner.cs
- ElementNotAvailableException.cs
- DocumentSchemaValidator.cs
- Context.cs
- SQLInt32.cs
- XmlEncoding.cs
- PolyLineSegment.cs
- ProcessHostConfigUtils.cs
- CommentEmitter.cs
- HandoffBehavior.cs
- Axis.cs
- ToolStripActionList.cs
- XPathMessageFilter.cs
- sqlser.cs
- XmlChoiceIdentifierAttribute.cs
- BooleanProjectedSlot.cs
- JumpItem.cs
- Message.cs
- SslStream.cs
- CollectionViewGroupRoot.cs
- StrongNameKeyPair.cs
- EmissiveMaterial.cs
- __Filters.cs
- Console.cs
- WebPartEditorCancelVerb.cs
- XPathChildIterator.cs
- Variant.cs
- DbConnectionPoolGroup.cs
- HexParser.cs
- HelpKeywordAttribute.cs
- OdbcConnectionStringbuilder.cs
- LinqTreeNodeEvaluator.cs
- Request.cs
- CommonRemoteMemoryBlock.cs
- BinaryCommonClasses.cs
- mda.cs
- RegisteredExpandoAttribute.cs
- KnownBoxes.cs
- ProcessManager.cs
- Span.cs
- Clause.cs
- AuthorizationRule.cs
- XamlReaderHelper.cs
- ExtractorMetadata.cs
- WebBrowserEvent.cs
- EdmTypeAttribute.cs
- AnnotationResourceChangedEventArgs.cs
- TypeBuilder.cs
- NextPreviousPagerField.cs
- HGlobalSafeHandle.cs
- WinFormsSpinner.cs
- DocumentPage.cs
- FixedPage.cs
- UInt32.cs
- CodeVariableReferenceExpression.cs
- OutputCacheProfile.cs
- DESCryptoServiceProvider.cs
- KnownTypes.cs
- Boolean.cs
- ComboBox.cs
- CategoryGridEntry.cs
- FunctionNode.cs
- BindingExpressionBase.cs
- AnimatedTypeHelpers.cs
- ContractMapping.cs
- Scalars.cs
- DesignerAutoFormatCollection.cs
- CollaborationHelperFunctions.cs
- DataMisalignedException.cs
- SBCSCodePageEncoding.cs
- OletxResourceManager.cs
- InputManager.cs
- FileReservationCollection.cs
- FileDetails.cs
- UnsafePeerToPeerMethods.cs
- ListBindingConverter.cs