Full linking is hard with biblatex. Additionally, there could be confusion about the target of links with certain styles. That is why the defaults only link the year/title. Nevertheless, full links seem to be high up many people's wish lists.
The style authoryear is fortunately fairly unproblematic conceptually. But we still have to re-implement all citation commands.
Normally, parts of the citation are typeset when the entry/entries processed are not yet known or not known any more or where grouping makes things a bit awkward, this is true for the parentheses as well as post- and pre-notes. We have to bring the typesetting of these elements into a context where it is known what entry they "belong" to and where the links can easily be applied.
This is going to be much harder with other more intricate styles such as authoryear-icomp that use the punctuation tracker between entries. The punctuation tracker makes text and punctuation typesetting asynchronous leading to edge cases where it can be much more complicated to get the link right around punctuation marks.
Note that the code uses internal macros of hyperref that are only available if that package is loaded. No error checking is done to prevent errors from not loading hyperref.
\documentclass[british]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{babel}
\usepackage{csquotes}
\usepackage[style=authoryear, backend=biber]{biblatex}
\addbibresource{biblatex-examples.bib}
\usepackage[colorlinks]{hyperref}
\makeatletter
\newcommand*{\linkblx@startlink}[1]{%
\blx@sfsave\hyper@natlinkstart{\the\c@refsection @#1}\blx@sfrest}
\newcommand*{\linkblx@startlinkentry}{%
\linkblx@startlink{\abx@field@entrykey}}
\newcommand*{\linkblx@endlink}{%
\blx@sfsave\hyper@natlinkend\blx@sfrest}
\DeclareCiteCommand{\cite}
{}%
{\DeclareFieldFormat{bibhyperref}{####1}%
\linkblx@startlinkentry
\ifnumequal{\value{citecount}}{1}
{\usebibmacro{prenote}}
{}%
\usebibmacro{citeindex}%
\usebibmacro{cite}%
\ifnumequal{\value{citecount}}{\value{citetotal}}
{\usebibmacro{postnote}}
{}%
\iflastcitekey{}{\multicitedelim}%
\linkblx@endlink}
{}
{}
\DeclareCiteCommand*{\cite}
{}%
{\DeclareFieldFormat{bibhyperref}{####1}%
\linkblx@startlinkentry
\ifnumequal{\value{citecount}}{1}
{\usebibmacro{prenote}}
{}%
\usebibmacro{citeindex}%
\usebibmacro{citeyear}%
\ifnumequal{\value{citecount}}{\value{citetotal}}
{\usebibmacro{postnote}}
{}%
\iflastcitekey{}{\multicitedelim}%
\linkblx@endlink}
{}
{}
\DeclareCiteCommand{\parencite}
{}%
{\DeclareFieldFormat{bibhyperref}{####1}%
\linkblx@startlinkentry
\iffirstcitekey{\bibopenparen}{}%
\ifnumequal{\value{citecount}}{1}
{\usebibmacro{prenote}}
{}%
\usebibmacro{citeindex}%
\usebibmacro{cite}%
\ifnumequal{\value{citecount}}{\value{citetotal}}
{\usebibmacro{postnote}}
{}%
\iflastcitekey{\bibcloseparen}{\multicitedelim}%
\linkblx@endlink}
{}
{}
\DeclareCiteCommand*{\parencite}
{}%
{\DeclareFieldFormat{bibhyperref}{####1}%
\linkblx@startlinkentry
\iffirstcitekey{\bibopenparen}{}%
\ifnumequal{\value{citecount}}{1}
{\usebibmacro{prenote}}
{}%
\usebibmacro{citeindex}%
\usebibmacro{citeyear}%
\ifnumequal{\value{citecount}}{\value{citetotal}}
{\usebibmacro{postnote}}
{}%
\iflastcitekey{\bibcloseparen}{\multicitedelim}%
\linkblx@endlink}
{}
{}
\DeclareCiteCommand{\textcite}
{\boolfalse{cbx:parens}}
{\DeclareFieldFormat{bibhyperref}{####1}%
\linkblx@startlinkentry
\usebibmacro{citeindex}%
\iffirstcitekey
{\setcounter{textcitetotal}{1}}
{\stepcounter{textcitetotal}%
\textcitedelim}%
\usebibmacro{textcite}%
\iflastcitekey
{}
{\ifbool{cbx:parens}
{\bibcloseparen\global\boolfalse{cbx:parens}}
{}}%
\ifnumequal{\value{citecount}}{\value{citetotal}}
{\usebibmacro{textcite:postnote}}
{}%
\linkblx@endlink}
{}
{}
\DeclareMultiCiteCommand{\parencites}{\parencite}{}
\makeatother
\begin{document}
A\cite{sigfridsson}B
\parencite{sigfridsson}
\textcite{sigfridsson}
\parencite[cf.][380]{sigfridsson}
\parencite{sigfridsson,worman,geer}
\parencite[cf.][1]{sigfridsson,worman,geer}
\printbibliography
\end{document}

\documentclass{...}, the required\usepackage's,\begin{document}, and\end{document}. That may seem tedious to you, but think of the extra work it represents for TeX.SX users willing to give you a hand. Help them help you: remove that one hurdle between you and a solution to your problem. – Skillmon Apr 07 '18 at 06:49