Ich habe eine leere Zeichenfolge erhalten, wenn es keinen Wert gab:
[HttpPost]
public ActionResult Add(string text)
{
// text is "" when there's no value provided by user
}
Aber jetzt komme ich an einem Modell vorbei
[HttpPost]
public ActionResult Add(SomeModel Model)
{
// model.Text is null when there's no value provided by user
}
Also muss ich den ?? ""
Operator benutzen .
Warum passiert das?