Updates referencesource to .NET 4.7
[mono-project.git] / mcs / class / referencesource / System.Data.Entity / System / Data / Objects / AdditionalEntityFunctions.cs
blob36c949997b79c71151f534aa5392d916e1b91df0
1 //---------------------------------------------------------------------
2 // <copyright file="AdditionalEntityFunctions.cs" company="Microsoft">
3 // Copyright (c) Microsoft Corporation. All rights reserved.
4 // </copyright>
5 //
6 // @owner Microsoft
7 // @backupOwner Microsoft
8 //---------------------------------------------------------------------
9 namespace System.Data.Objects
11 public static partial class EntityFunctions
13 /// <summary>
14 /// An ELINQ operator that ensures the input string is treated as a unicode string.
15 /// </summary>
16 /// <param name="value"></param>
17 /// <returns></returns>
18 public static string AsUnicode(string value)
20 return value;
23 /// <summary>
24 /// An ELINQ operator that treats the input string as a non-unicode string.
25 /// </summary>
26 /// <param name="value"></param>
27 /// <returns></returns>
28 public static string AsNonUnicode(string value)
30 return value;