2 overrides of GetMetaType
System.Data.Linq (2)
Mapping\AttributedMetaModel.cs (1)
264public override MetaType GetMetaType(Type type) {
Mapping\MappedMetaModel.cs (1)
181public override MetaType GetMetaType(Type type) {
20 references to GetMetaType
System.Data.Linq (19)
ChangeTracker.cs (1)
86MetaType type = this.services.Model.GetMetaType(obj.GetType());
DataContext.cs (3)
608MetaType inheritanceRoot = services.Model.GetMetaType(o.GetType()).InheritanceRoot; 1573MetaType type = this.Context.Mapping.GetMetaType(entity.GetType()); 1610MetaType type = this.Context.Mapping.GetMetaType(entity.GetType());
Mapping\AttributedMetaModel.cs (1)
1331this.otherType = this.thisMember.DeclaringType.Model.GetMetaType(ot);
Mapping\MappedMetaModel.cs (1)
1268this.otherType = this.thisMember.DeclaringType.Model.GetMetaType(ot);
SqlClient\Common\SqlFactory.cs (2)
290MetaType typeOf = this.model.GetMetaType((Type)value); 503MetaType metaType = this.model.GetMetaType(member.DeclaringType);
SqlClient\Query\MethodCallConverter.cs (1)
333Type originalType = model.GetMetaType(t.Operand.ClrType).InheritanceRoot.Type;
SqlClient\Query\QueryConverter.cs (4)
830MetaType mt = this.services.Model.GetMetaType(qn.Type); 850MetaType mt = this.services.Model.GetMetaType(init.Type); 1248MetaType mType = this.services.Model.GetMetaType(elementType); 2594MetaType metaType = this.services.Model.GetMetaType(entityType);
SqlClient\Query\SqlBinder.cs (2)
386MetaType mt = this.model.GetMetaType((Type)val.Value); 440var mt = this.model.GetMetaType(obj.ClrType).InheritanceRoot;
SqlClient\Query\TypeSource.cs (1)
141return model.GetMetaType(type);
SqlClient\SqlProvider.cs (3)
1223MetaType rowType = services.Model.GetMetaType(elementType); 1656return this.GetDefaultFactory(services.Model.GetMetaType(elemType)); 1990metaType = this.provider.services.Model.GetMetaType(typeof(T));
System.Web.Extensions (1)
UI\WebControls\LinqDataSourceView.cs (1)
630MetaType rowMetaData = tableMetaData.Model.GetMetaType(dataObjectType);