System\Data\Objects\ELinq\MethodCallTranslator.cs (4)
1439yield return GetMethod(stringsType, "Len", ExpressionConverter.Length, new Type[] { typeof(string) });
1440yield return GetMethod(stringsType, "Mid", ExpressionConverter.Substring, new Type[] { typeof(string), typeof(int), typeof(int) });
1441yield return GetMethod(stringsType, "UCase", ExpressionConverter.ToUpper, new Type[] { typeof(string) });
1442yield return GetMethod(stringsType, "LCase", ExpressionConverter.ToLower, new Type[] { typeof(string) });