NPoco.PocoDataFactory.BaseClassFalbackPocoDataBuilder C# (CSharp) 메소드

BaseClassFalbackPocoDataBuilder() 개인적인 메소드

private BaseClassFalbackPocoDataBuilder ( Type type ) : InitializedPocoDataBuilder
type System.Type
리턴 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();
        }