BuildYourOwnDAL.Metadata.ReferenceInfo.ReferenceInfo C# (CSharp) 메소드

ReferenceInfo() 공개 메소드

public ReferenceInfo ( MetaDataStore store, string name, Type referenceType, PropertyInfo propertyInfo ) : System
store MetaDataStore
name string
referenceType System.Type
propertyInfo System.Reflection.PropertyInfo
리턴 System
        public ReferenceInfo(MetaDataStore store, string name, Type referenceType, PropertyInfo propertyInfo)
            : base(store, name, store.GetTableInfoFor(referenceType).PrimaryKey.DotNetType,
                    store.GetTableInfoFor(referenceType).PrimaryKey.DbType, propertyInfo)
        {
            ReferenceType = referenceType;
        }
ReferenceInfo