1 type derived from SqlNodeAnnotation
System.Data.Linq (1)
SqlClient\Common\SqlServer2KCompatibilityAnnotation.cs (1)
11internal class SqlServerCompatibilityAnnotation : SqlNodeAnnotation {
8 references to SqlNodeAnnotation
System.Data.Linq (8)
SqlClient\Common\SqlNodeAnnotations.cs (7)
11Dictionary<SqlNode, List<SqlNodeAnnotation>> annotationMap = new Dictionary<SqlNode, List<SqlNodeAnnotation>>(); 17internal void Add(SqlNode node, SqlNodeAnnotation annotation) { 18List<SqlNodeAnnotation> list = null; 21list = new List<SqlNodeAnnotation>(); 33internal List<SqlNodeAnnotation> Get(SqlNode node) { 34List<SqlNodeAnnotation> list = null;
SqlClient\Common\SqlServer2KCompatibilityCheck.cs (1)
32foreach (SqlNodeAnnotation annotation in annotations.Get(node)) {