//--------------------------------------------------------------------- // // Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner Microsoft // @backupOwner Microsoft //--------------------------------------------------------------------- namespace System.Data.Objects { public static partial class EntityFunctions { /// /// An ELINQ operator that ensures the input string is treated as a unicode string. /// /// /// public static string AsUnicode(string value) { return value; } /// /// An ELINQ operator that treats the input string as a non-unicode string. /// /// /// public static string AsNonUnicode(string value) { return value; } } }