Fauna .NET Driver 0.1.0-beta
 
Loading...
Searching...
No Matches
FieldName.cs
Go to the documentation of this file.
1namespace Fauna.Mapping;
2
3public static class FieldName
4{
5 // C# properties are capitalized whereas Fauna fields are not by convention.
6 public static string Canonical(string name) =>
7 (string.IsNullOrEmpty(name) || char.IsLower(name[0])) ?
8 name :
9 string.Concat(name[0].ToString().ToLower(), name.AsSpan(1));
10}
@ FieldName
The token type is a Fauna property name.