model binding to fields

This commit is contained in:
2020-04-30 15:35:09 +02:00
parent 5dde92bd92
commit 77be448a76
20 changed files with 191 additions and 58 deletions
+5
View File
@@ -78,5 +78,10 @@ namespace zero.Core.Extensions
{
return String.IsNullOrWhiteSpace(input);
}
public static string ToCamelCase(this string input)
{
return Char.ToLowerInvariant(input[0]) + input.Substring(1);
}
}
}