Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / DataEntity / System / Data / Objects / DataClasses / EdmScalarPropertyAttribute.cs / 1305376 / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- FacetEnabledSchemaElement.cs
- TextElement.cs
- DecoratedNameAttribute.cs
- DoubleLink.cs
- XmlUrlEditor.cs
- ToolStripManager.cs
- SystemUdpStatistics.cs
- ETagAttribute.cs
- PeerCollaborationPermission.cs
- CommonProperties.cs
- DecoderReplacementFallback.cs
- HttpRawResponse.cs
- SmtpFailedRecipientsException.cs
- ParentQuery.cs
- AsmxEndpointPickerExtension.cs
- SettingsAttributeDictionary.cs
- PowerStatus.cs
- FlowPosition.cs
- BaseParaClient.cs
- XmlComplianceUtil.cs
- MetafileHeaderWmf.cs
- SelectionPatternIdentifiers.cs
- TrustLevelCollection.cs
- ToolboxItemAttribute.cs
- TraceHwndHost.cs
- PersonalizableAttribute.cs
- IndexedString.cs
- HttpHandlerAction.cs
- ToolStripSeparator.cs
- ParentQuery.cs
- DocumentReferenceCollection.cs
- MiniParameterInfo.cs
- DataColumnCollection.cs
- WindowsAltTab.cs
- SkinBuilder.cs
- SamlDelegatingWriter.cs
- DataGridViewAccessibleObject.cs
- StyleCollectionEditor.cs
- DeclarativeCatalogPartDesigner.cs
- X509AsymmetricSecurityKey.cs
- SizeValueSerializer.cs
- LightweightCodeGenerator.cs
- TcpPortSharing.cs
- DeferredSelectedIndexReference.cs
- ScriptReference.cs
- BitmapFrameDecode.cs
- _SecureChannel.cs
- RestHandlerFactory.cs
- AssociationEndMember.cs
- ProfileManager.cs
- DataGridViewColumnCollection.cs
- RtType.cs
- DrawingCollection.cs
- ObjectParameter.cs
- BamlResourceContent.cs
- PageContent.cs
- QueryCacheKey.cs
- HttpRequest.cs
- SQLInt64Storage.cs
- DelegateHelpers.cs
- ActivationServices.cs
- XmlSerializationWriter.cs
- WebChannelFactory.cs
- StyleBamlRecordReader.cs
- SingleSelectRootGridEntry.cs
- QuadraticBezierSegment.cs
- Pool.cs
- TCPListener.cs
- HostingEnvironment.cs
- OperationResponse.cs
- WebPartConnectionsCloseVerb.cs
- SystemDropShadowChrome.cs
- Publisher.cs
- HttpRequestBase.cs
- PartialCachingControl.cs
- SQLRoleProvider.cs
- TextRunCacheImp.cs
- AudioException.cs
- DataGridViewRowCancelEventArgs.cs
- AppDomainFactory.cs
- XmlNullResolver.cs
- TextFormatterContext.cs
- X500Name.cs
- DLinqDataModelProvider.cs
- PlatformNotSupportedException.cs
- BaseTemplateBuildProvider.cs
- SqlClientWrapperSmiStream.cs
- PhysicalFontFamily.cs
- ShaderEffect.cs
- FrameworkContentElement.cs
- WebPermission.cs
- SlipBehavior.cs
- DBSqlParserColumnCollection.cs
- CharacterShapingProperties.cs
- WeakReferenceKey.cs
- TextBoxView.cs
- DataGridViewCheckBoxCell.cs
- CharAnimationBase.cs
- WindowsRichEditRange.cs
- Debug.cs