Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / DataEntity / System / Data / Objects / Internal / EntityWithKeyStrategy.cs / 1305376 / EntityWithKeyStrategy.cs
using System; using System.Collections.Generic; using System.Text; using System.Data; using System.Data.Objects.DataClasses; using System.Diagnostics; namespace System.Data.Objects.Internal { ////// Implementor of IEntityKeyStrategy for entities that implement IEntityWithKey. Getting and setting /// the key is deferred to the entity itself. /// internal sealed class EntityWithKeyStrategy : IEntityKeyStrategy { private IEntityWithKey _entity; ////// Creates a strategy object for the given entity. Keys will be stored in the entity. /// /// The entity to use public EntityWithKeyStrategy(IEntityWithKey entity) { _entity = entity; } // See IEntityKeyStrategy public EntityKey GetEntityKey() { return _entity.EntityKey; } // See IEntityKeyStrategy public void SetEntityKey(EntityKey key) { _entity.EntityKey = key; } // See IEntityKeyStrategy public EntityKey GetEntityKeyFromEntity() { return _entity.EntityKey; } } } // 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.Text; using System.Data; using System.Data.Objects.DataClasses; using System.Diagnostics; namespace System.Data.Objects.Internal { ////// Implementor of IEntityKeyStrategy for entities that implement IEntityWithKey. Getting and setting /// the key is deferred to the entity itself. /// internal sealed class EntityWithKeyStrategy : IEntityKeyStrategy { private IEntityWithKey _entity; ////// Creates a strategy object for the given entity. Keys will be stored in the entity. /// /// The entity to use public EntityWithKeyStrategy(IEntityWithKey entity) { _entity = entity; } // See IEntityKeyStrategy public EntityKey GetEntityKey() { return _entity.EntityKey; } // See IEntityKeyStrategy public void SetEntityKey(EntityKey key) { _entity.EntityKey = key; } // See IEntityKeyStrategy public EntityKey GetEntityKeyFromEntity() { return _entity.EntityKey; } } } // 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
- ReflectionServiceProvider.cs
- BinaryReader.cs
- BackgroundWorker.cs
- TraceContext.cs
- CorrelationManager.cs
- DataGridTextBox.cs
- HtmlLiteralTextAdapter.cs
- Pair.cs
- ElementHostPropertyMap.cs
- UnsignedPublishLicense.cs
- TreeNodeStyleCollection.cs
- ObfuscationAttribute.cs
- WebPartTransformer.cs
- LogWriteRestartAreaAsyncResult.cs
- _OverlappedAsyncResult.cs
- ReliableMessagingVersionConverter.cs
- SpotLight.cs
- InstancePersistence.cs
- ObjectNotFoundException.cs
- ChannelCacheDefaults.cs
- MaterialCollection.cs
- TriggerBase.cs
- TextRangeSerialization.cs
- ParenthesizePropertyNameAttribute.cs
- ObjectFactoryCodeDomTreeGenerator.cs
- FileSystemEnumerable.cs
- HyperlinkAutomationPeer.cs
- AmbientValueAttribute.cs
- EntityClientCacheKey.cs
- Menu.cs
- SafeWaitHandle.cs
- ListDataBindEventArgs.cs
- DrawingVisualDrawingContext.cs
- SerializableAttribute.cs
- HtmlTextArea.cs
- NonVisualControlAttribute.cs
- SQlBooleanStorage.cs
- ModuleConfigurationInfo.cs
- RegionIterator.cs
- CryptoKeySecurity.cs
- ProfileGroupSettingsCollection.cs
- IERequestCache.cs
- TextEvent.cs
- TypeNameHelper.cs
- MobileErrorInfo.cs
- ScaleTransform.cs
- ValidationHelper.cs
- ListBoxItemAutomationPeer.cs
- TemplatedWizardStep.cs
- SqlRetyper.cs
- dataobject.cs
- HitTestFilterBehavior.cs
- CharacterHit.cs
- RemoveStoryboard.cs
- ServiceHttpModule.cs
- StatusBarItem.cs
- FunctionCommandText.cs
- SchemaLookupTable.cs
- GeometryGroup.cs
- UnsafeNetInfoNativeMethods.cs
- Debug.cs
- Durable.cs
- TraceInternal.cs
- Span.cs
- DependencyObjectValidator.cs
- SmiEventSink_DeferedProcessing.cs
- PermissionListSet.cs
- WindowCollection.cs
- MissingMemberException.cs
- GeometryConverter.cs
- ProfilePropertyNameValidator.cs
- XPathScanner.cs
- SrgsOneOf.cs
- UnknownWrapper.cs
- PlanCompiler.cs
- ObjectHandle.cs
- PartialCachingAttribute.cs
- EntitySetDataBindingList.cs
- Transform3DGroup.cs
- EventDescriptorCollection.cs
- TreeChangeInfo.cs
- SingleObjectCollection.cs
- WorkflowPersistenceService.cs
- WebPartsPersonalizationAuthorization.cs
- KnownColorTable.cs
- Type.cs
- ExpressionBuilder.cs
- DataTableCollection.cs
- SafeViewOfFileHandle.cs
- SqlSupersetValidator.cs
- Socket.cs
- DataViewManager.cs
- StringInfo.cs
- GAC.cs
- RotateTransform3D.cs
- ServicePointManager.cs
- UriExt.cs
- BehaviorEditorPart.cs
- XmlWrappingReader.cs
- ImageInfo.cs