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