Fauna .NET Driver
0.1.0-beta
Loading...
Searching...
No Matches
repo.git
Fauna
Mapping
FieldName.cs
Go to the documentation of this file.
1
namespace
Fauna.Mapping
;
2
3
public
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
}
Fauna.Mapping
Definition
Attributes.cs:1
Fauna.Serialization.TokenType.FieldName
@ FieldName
The token type is a Fauna property name.
Generated by
1.9.8