1 write to type
System.Data.Linq (1)
Mapping\MappedMetaModel.cs (1)
593
this.
type
= type;
10 references to type
System.Data.Linq (10)
Mapping\MappedMetaModel.cs (10)
603
if (mm.IsPrimaryKey && this.inheritanceRoot != this && mm.Member.DeclaringType == this.
type
) {
604
throw (Error.PrimaryKeyInSubTypeNotSupported(this.
type
.Name, mm.Name));
641
Type currentType = this.
type
;
650
FieldInfo[] fis = TypeSystem.GetAllFields(this.
type
, flags).ToArray();
671
PropertyInfo[] pis = TypeSystem.GetAllProperties(this.
type
, flags).ToArray();
704
throw Error.MappedMemberHadNoCorrespondingMemberInType(orphan.Value.MemberName,
type
.Name);
750
get { return this.
type
; }
753
get { return this.
type
.Name; }
765
get { return !this.
type
.IsAbstract && (this == this.InheritanceRoot || this.HasInheritanceCode); }
834
if (mt.Type.BaseType == this.
type
)