model binding to fields
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user