Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / Orcas / SP / ndp / fx / src / DataEntity / System / Data / Map / ViewGeneration / CqlGeneration / CqlWriter.cs / 2 / CqlWriter.cs
//---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....] // @backupOwner [....] //--------------------------------------------------------------------- using System.Text.RegularExpressions; using System.Text; using System.Data.Common.Utils; using System.Data.Mapping.ViewGeneration.Utils; using System.Data.Metadata.Edm; namespace System.Data.Mapping.ViewGeneration.CqlGeneration { // This class contains helper methods needed for generating Cql internal static class CqlWriter { #region Fields private static readonly Regex s_wordIdentifierRegex = new Regex(@"^[_A-Za-z]\w*$", RegexOptions.ECMAScript | RegexOptions.Compiled); #endregion #region Helper Methods // effects: Given a block name and a field in it -- returns a string // of form "blockName.field". Does not perform any escaping internal static string GetQualifiedName(string blockName, string field) { string result = StringUtil.FormatInvariant("{0}.{1}", blockName, field); return result; } // effects: Modifies builder to contain an escaped version of type's name internal static void AppendEscapedTypeName(StringBuilder builder, EdmType type) { AppendEscapedQualifiedName(builder, type.NamespaceName, type.Name); } // effects: Modifies builder to contain an escaped version of "namespc.name" internal static void AppendEscapedQualifiedName(StringBuilder builder, string namespc, string name) { AppendEscapedName(builder, namespc); builder.Append('.'); AppendEscapedName(builder, name); } // effects: Modifies builder to contain an escaped version of "name" internal static void AppendEscapedName(StringBuilder builder, string name) { if (s_wordIdentifierRegex.IsMatch(name) && false == ExternalCalls.IsReservedKeyword(name)) { // We do not need to escape the name if it is a simple name and it is not a keyword builder.Append(name); } else { string newName = name.Replace("]", "]]"); builder.Append('[') .Append(newName) .Append(']'); } } #endregion } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....] // @backupOwner [....] //--------------------------------------------------------------------- using System.Text.RegularExpressions; using System.Text; using System.Data.Common.Utils; using System.Data.Mapping.ViewGeneration.Utils; using System.Data.Metadata.Edm; namespace System.Data.Mapping.ViewGeneration.CqlGeneration { // This class contains helper methods needed for generating Cql internal static class CqlWriter { #region Fields private static readonly Regex s_wordIdentifierRegex = new Regex(@"^[_A-Za-z]\w*$", RegexOptions.ECMAScript | RegexOptions.Compiled); #endregion #region Helper Methods // effects: Given a block name and a field in it -- returns a string // of form "blockName.field". Does not perform any escaping internal static string GetQualifiedName(string blockName, string field) { string result = StringUtil.FormatInvariant("{0}.{1}", blockName, field); return result; } // effects: Modifies builder to contain an escaped version of type's name internal static void AppendEscapedTypeName(StringBuilder builder, EdmType type) { AppendEscapedQualifiedName(builder, type.NamespaceName, type.Name); } // effects: Modifies builder to contain an escaped version of "namespc.name" internal static void AppendEscapedQualifiedName(StringBuilder builder, string namespc, string name) { AppendEscapedName(builder, namespc); builder.Append('.'); AppendEscapedName(builder, name); } // effects: Modifies builder to contain an escaped version of "name" internal static void AppendEscapedName(StringBuilder builder, string name) { if (s_wordIdentifierRegex.IsMatch(name) && false == ExternalCalls.IsReservedKeyword(name)) { // We do not need to escape the name if it is a simple name and it is not a keyword builder.Append(name); } else { string newName = name.Replace("]", "]]"); builder.Append('[') .Append(newName) .Append(']'); } } #endregion } } // 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
- ExtentJoinTreeNode.cs
- NameValuePair.cs
- UnsafeNativeMethods.cs
- CryptoStream.cs
- XamlInt32CollectionSerializer.cs
- SecurityTokenSerializer.cs
- Point3DAnimationUsingKeyFrames.cs
- FormsIdentity.cs
- CachedBitmap.cs
- DetailsViewRowCollection.cs
- ViewStateModeByIdAttribute.cs
- RedirectionProxy.cs
- mda.cs
- _ContextAwareResult.cs
- Wildcard.cs
- SmiXetterAccessMap.cs
- FormatConvertedBitmap.cs
- COM2ExtendedTypeConverter.cs
- _ShellExpression.cs
- HtmlElement.cs
- StackOverflowException.cs
- OdbcConnectionHandle.cs
- RuntimeResourceSet.cs
- VisualBrush.cs
- FixedTextPointer.cs
- StorageMappingFragment.cs
- FieldNameLookup.cs
- DataTableReader.cs
- BitmapEffectInputConnector.cs
- SafeViewOfFileHandle.cs
- User.cs
- DebugTracing.cs
- SafeNativeMethods.cs
- FolderLevelBuildProviderCollection.cs
- LogPolicy.cs
- indexingfiltermarshaler.cs
- HtmlEmptyTagControlBuilder.cs
- ClassicBorderDecorator.cs
- TimeSpan.cs
- DataViewSetting.cs
- RegexWriter.cs
- Positioning.cs
- QilScopedVisitor.cs
- EntityViewGenerationAttribute.cs
- TypedDataSetSchemaImporterExtensionFx35.cs
- WorkflowInvoker.cs
- PropertyInfoSet.cs
- WebPartAuthorizationEventArgs.cs
- SqlDataRecord.cs
- HttpCapabilitiesEvaluator.cs
- MenuCommand.cs
- WebBrowser.cs
- FaultCode.cs
- ReflectPropertyDescriptor.cs
- HeaderedContentControl.cs
- _BaseOverlappedAsyncResult.cs
- PhysicalAddress.cs
- ThaiBuddhistCalendar.cs
- LinqDataSourceValidationException.cs
- sqlser.cs
- FontResourceCache.cs
- ReaderWriterLock.cs
- DataGridViewAutoSizeColumnsModeEventArgs.cs
- MetadataCache.cs
- EncodingNLS.cs
- SqlCommandBuilder.cs
- WithParamAction.cs
- Light.cs
- WindowsStatic.cs
- ValidatedControlConverter.cs
- TypefaceCollection.cs
- EmbeddedMailObjectsCollection.cs
- WsatAdminException.cs
- WebPermission.cs
- TypedTableBase.cs
- BindToObject.cs
- RawStylusActions.cs
- AssemblyNameProxy.cs
- Currency.cs
- IPCCacheManager.cs
- EarlyBoundInfo.cs
- PolyLineSegmentFigureLogic.cs
- WebOperationContext.cs
- Semaphore.cs
- XmlSchemaParticle.cs
- DependencyProperty.cs
- DictionaryGlobals.cs
- TextSchema.cs
- OdbcCommand.cs
- Utils.cs
- DelegatingConfigHost.cs
- HashHelper.cs
- TouchPoint.cs
- HandlerFactoryCache.cs
- FloaterParaClient.cs
- XmlWhitespace.cs
- FixedSchema.cs
- ResourceSetExpression.cs
- ConnectionString.cs
- XmlAttributeProperties.cs