Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / Orcas / SP / ndp / fx / src / DataEntity / System / Data / Objects / DataClasses / EdmScalarPropertyAttribute.cs / 2 / EdmScalarPropertyAttribute.cs
//---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....] // @backupOwner [....] //--------------------------------------------------------------------- namespace System.Data.Objects.DataClasses { using System; ////// Attribute for scalar properties in an IEntity. /// Implied default AttributeUsage properties Inherited=True, AllowMultiple=False, /// The metadata system expects this and will only look at the first of each of these attributes, even if there are more. /// [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId = "Edm")] [AttributeUsage(AttributeTargets.Property)] public sealed class EdmScalarPropertyAttribute : EdmPropertyAttribute { // Private variables corresponding to their properties. private bool _isNullable = true; private bool _entityKeyProperty; ////// Attribute for scalar properties. /// EdmScalarPropertyAttribute(EntityKeyProperty=[true|false], IsNullable=[true|false]) /// IsNullable and EntityKeyProperty cannot both be true. /// public EdmScalarPropertyAttribute() { } ////// The property is allowed to have a value of NULL. /// public bool IsNullable { get { return _isNullable; } set { _isNullable = value;} } ////// The property is a key. /// public bool EntityKeyProperty { get { return _entityKeyProperty; } set { _entityKeyProperty = value; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....] // @backupOwner [....] //--------------------------------------------------------------------- namespace System.Data.Objects.DataClasses { using System; ////// Attribute for scalar properties in an IEntity. /// Implied default AttributeUsage properties Inherited=True, AllowMultiple=False, /// The metadata system expects this and will only look at the first of each of these attributes, even if there are more. /// [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId = "Edm")] [AttributeUsage(AttributeTargets.Property)] public sealed class EdmScalarPropertyAttribute : EdmPropertyAttribute { // Private variables corresponding to their properties. private bool _isNullable = true; private bool _entityKeyProperty; ////// Attribute for scalar properties. /// EdmScalarPropertyAttribute(EntityKeyProperty=[true|false], IsNullable=[true|false]) /// IsNullable and EntityKeyProperty cannot both be true. /// public EdmScalarPropertyAttribute() { } ////// The property is allowed to have a value of NULL. /// public bool IsNullable { get { return _isNullable; } set { _isNullable = value;} } ////// The property is a key. /// public bool EntityKeyProperty { get { return _entityKeyProperty; } set { _entityKeyProperty = value; } } } } // 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
- PageParserFilter.cs
- AttributeCollection.cs
- SoapTransportImporter.cs
- _RequestLifetimeSetter.cs
- BuildProviderCollection.cs
- ProtocolsConfiguration.cs
- DocumentReferenceCollection.cs
- DataRowExtensions.cs
- DrawingCollection.cs
- ItemsControlAutomationPeer.cs
- TimeSpanParse.cs
- LicenseContext.cs
- MimeWriter.cs
- XmlSchemaRedefine.cs
- EventDescriptor.cs
- RequestCacheEntry.cs
- FormViewPagerRow.cs
- SqlDataSourceStatusEventArgs.cs
- Confirm.cs
- ViewRendering.cs
- SafeNativeMethods.cs
- XMLSchema.cs
- DispatcherEventArgs.cs
- TransformationRules.cs
- FormatterConverter.cs
- NotImplementedException.cs
- TreeViewCancelEvent.cs
- MLangCodePageEncoding.cs
- InputBinder.cs
- AssociationEndMember.cs
- SchemaHelper.cs
- ReflectionTypeLoadException.cs
- GeneralTransform.cs
- OutputScope.cs
- PrintPageEvent.cs
- StylusDevice.cs
- Model3D.cs
- XslUrlEditor.cs
- DesignerObjectListAdapter.cs
- DesigntimeLicenseContext.cs
- TrustLevelCollection.cs
- SecureConversationSecurityTokenParameters.cs
- LinqDataSource.cs
- GroupBox.cs
- BinaryCommonClasses.cs
- AddInAttribute.cs
- EdmSchemaError.cs
- CheckableControlBaseAdapter.cs
- ScalarConstant.cs
- MemberHolder.cs
- SynchronizingStream.cs
- Win32Native.cs
- PrintDialog.cs
- AggregateException.cs
- BindingCompleteEventArgs.cs
- SessionPageStatePersister.cs
- TextInfo.cs
- RepeatInfo.cs
- XmlText.cs
- ObjectTokenCategory.cs
- ExpressionNormalizer.cs
- ImportContext.cs
- FlowSwitchDesigner.xaml.cs
- MessageSecurityOverHttp.cs
- QueryCreatedEventArgs.cs
- PersonalizableTypeEntry.cs
- securitycriticaldata.cs
- GregorianCalendar.cs
- ConnectionPoint.cs
- MILUtilities.cs
- CodeDirectiveCollection.cs
- List.cs
- XmlSchemaValidator.cs
- CatchBlock.cs
- MetadataUtilsSmi.cs
- CustomLineCap.cs
- InvalidMessageContractException.cs
- EditorPartChrome.cs
- UpdateTracker.cs
- BrowserCapabilitiesFactory.cs
- ListViewSelectEventArgs.cs
- Grid.cs
- ToolStripTextBox.cs
- PeerName.cs
- ScrollBar.cs
- XmlSerializerNamespaces.cs
- FilterException.cs
- CoreSwitches.cs
- NavigateEvent.cs
- ParameterBuilder.cs
- Vector3DConverter.cs
- CodeMethodReturnStatement.cs
- DocumentPageHost.cs
- QilCloneVisitor.cs
- XComponentModel.cs
- SiteIdentityPermission.cs
- ProfileSection.cs
- MeshGeometry3D.cs
- QilPatternFactory.cs
- ApplicationDirectory.cs