BTDB.ODBLayer.DefaultODBFieldHandlerFactory.TypeSupported C# (CSharp) Method

TypeSupported() public method

public TypeSupported ( Type type ) : bool
type System.Type
return bool
        public override bool TypeSupported(Type type)
        {
            if (ODBDictionaryFieldHandler.IsCompatibleWithStatic(type, FieldHandlerOptions.None)) return true;
            if (base.TypeSupported(type)) return true;
            if (DBObjectFieldHandler.IsCompatibleWith(type)) return true;
            return false;
        }