Authors frequently publish under multiple variants of their name (e.g., PhD dissertations are often published under the author's full legal name), and in these cases I want a single author's publications to be sorted together in the bibliography and grouped together in my in-text citations. I also agree that it's best to make the author field represent the published form of the name.
Here's my solution in cases like these:
Use the sortname field in the .bib entry to establish the form of the name that you want to be used when sorting entries in the bibliography. Your first entry would be:
@article{Delbaen1998,
year={1998},
title={Title3},
author={Delbaen, F.},
sortname={Delbaen, Freddy},
}
Add the following code to your preamble. This determines the order of fields that biblatex looks to when creating the labelname field. By putting sortname at the top, whatever you put in your sortname field will override the author field for the purposes of your in-text citations and bibliography dashes. (You can rearrange the order of the other fields to suit your needs; sortname just needs to be at the top.)
\DeclareLabelname{%
\field{sortname}
\field{shortauthor}
\field{author}
\field{shorteditor}
\field{editor}
\field{translator}
}
This solution allows you to impose authority control without removing information from the author field, and it also allows you to use the full range of uniquename options if you do want to take advantage of biblatex's disambiguation capabilities.
I should note that I generally use a style where authors' names are spelled out in full in the bibliography. The method I described works for those styles as well as initials-only styles as in the MWE. In a spelled-out style, the author field will be displayed in full in the bibliography, but the sortname governs sorting and what appears in in-text citations.
EDIT: Per @Christian Hupfer's suggestion, here's a full example based on @user4514's MWE.
\RequirePackage{filecontents}
\begin{filecontents}{\jobname.bib}
@article{Delbaen1998,
year={1998},
title={Title3},
author={Delbaen, F.},
sortname={Delbaen, Freddy}, % This author is really Freddy Delbaen, not some other F. Delbaen.
}
@article{Delbaen1994,
year={1994},
title={Title2},
author={Delbaen, Freddy},
}
@article{Delbaen1993,
year={1993},
title={Title1},
author={Delbaen, Freddy},
}
\end{filecontents}
\documentclass{article}
\usepackage[latin9]{inputenc}
\usepackage[style=authoryear
,uniquename=init
,firstinits=true
,backend=biber]{biblatex}
\DeclareLabelname{%
\field{sortname} % sortname takes precedence over author for grouping/dashing
\field{shortauthor}
\field{author}
\field{shorteditor}
\field{editor}
\field{translator}
}
\bibliography{\jobname}
\begin{document}
\cite{Delbaen1993,Delbaen1994,Delbaen1998}
\printbibliography
\end{document}
Output:

With the following biblatex options for a spelled-out style:
\usepackage[style=authoryear-comp % compact citations (authors' names are not repeated if identical)
,dashed=false % no dash in bibliography
,uniquename=init % we can still disambiguate names in citations
,firstinits=false % full names are used in bibliography
,backend=biber]{biblatex}
You get this output:

EDIT: The above answer works for biblatex version 2.9a. If you use version 3.0 or later, you need to use the following code in the preamble for step 2 instead of what was given above. This creates a field namea with the same content as sortname, and then namea is used for in-text citations rather than sortname.
\DeclareSourcemap{
\maps[datatype=bibtex]{
\map{
\step[fieldsource=sortname]
\step[fieldset=namea, origfieldval, final]
}
}
}
\DeclareLabelname{%
\field{namea}
\field{shortauthor}
\field{author}
\field{shorteditor}
\field{editor}
\field{translator}
}
See \DeclareLabelname not working in biblatex 3.0 for more information.
sortnametobiblatexanyway. So it's probably bad practice even though it works. Also, it might be good to change the deprecated\bibliographyto\addbibresource. – Adam Liter Sep 30 '15 at 16:56