I want the macro \finalnamedelim to behave differently for the citations and bib entries.
Especially in the case of exactly two authors (if we have more, the citation style uses "et al" anyway), in the citation it should use "and" as a seperator, but a comma in the bib entry.
Here my MWE:
\documentclass[a4paper,12pt,oneside]{scrreprt}
% ----------------------------------------------------------
\usepackage[%
style=authoryear,
bibstyle=authoryear,
maxcitenames=2,
dashed=false,
firstinits=true
backend=biber,
]{biblatex}
% ----------------------------------------------------------
\renewcommand*{\finalnamedelim}{\addcomma\space}
\renewcommand*{\revsdnamepunct}{}
% ----------------------------------------------------------
\addbibresource{biblatex-examples.bib}
% ----------------------------------------------------------
\begin{document}
\parencite{bertram}
\printbibliography
\end{document}
Which results in this citation:
and this bib entry:

However I want to achieve this:

What is the best way to do that?
Best regards, David
\AtBeginBibliography{\renewcommand*{\finalnamedelim}{\addcomma\space}}? Then the standard is used for citations and in the bibliography it is changed to a comma with space. Cf. the general approach used in http://tex.stackexchange.com/a/57622/35864 – moewe Mar 26 '16 at 13:46