1 write to contextType
System.Data.Linq (1)
Mapping\AttributedMetaModel.cs (1)
74this.contextType = contextType;
7 references to contextType
System.Data.Linq (7)
Mapping\AttributedMetaModel.cs (7)
80ProviderAttribute[] attrs = (ProviderAttribute[])this.contextType.GetCustomAttributes(typeof(ProviderAttribute), true); 88DatabaseAttribute[] das = (DatabaseAttribute[])this.contextType.GetCustomAttributes(typeof(DatabaseAttribute), false); 89this.dbName = (das != null && das.Length > 0) ? das[0].Name : this.contextType.Name; 97get { return this.contextType; } 130for (Type type = this.contextType; type != typeof(DataContext); type = type.BaseType) { 163if (this.contextType != typeof(DataContext)) { 164for (Type type = this.contextType; type != typeof(DataContext); type = type.BaseType) {