NPoco.PocoDataFactory.BaseClassFalbackPocoDataBuilder C# (CSharp) Méthode

BaseClassFalbackPocoDataBuilder() private méthode

private BaseClassFalbackPocoDataBuilder ( Type type ) : InitializedPocoDataBuilder
type System.Type
Résultat InitializedPocoDataBuilder
        private InitializedPocoDataBuilder BaseClassFalbackPocoDataBuilder(Type type)
        {
            var builder = new PocoDataBuilder(type, _mapper).Init();
            var persistedType = builder.BuildTableInfo().PersistedType;
            if (persistedType == null || persistedType == type)
            {
                return builder;
            }
            return new PocoDataBuilder(persistedType, _mapper).Init();
        }