System.Data.Entity.Core.Objects.ELinq.ExpressionConverter.IsCSharpGeneratedClass C# (CSharp) Method

IsCSharpGeneratedClass() private static method

private static IsCSharpGeneratedClass ( string typeName, string pattern ) : bool
typeName string
pattern string
return bool
        private static bool IsCSharpGeneratedClass(string typeName, string pattern)
        {
            return typeName.Contains("<>") && typeName.Contains("__") && typeName.Contains(pattern);
        }