示例#1
0
 public static RootField <TagsFieldProperties> Tags(long id, string name, Partitioning partitioning, TagsFieldProperties properties = null)
 {
     return(new RootField <TagsFieldProperties>(id, name, partitioning, properties ?? new TagsFieldProperties()));
 }
示例#2
0
 public static ArrayField AddTags(this ArrayField field, long id, string name, TagsFieldProperties properties = null)
 {
     return(field.AddField(Tags(id, name, properties)));
 }
示例#3
0
 public static Schema AddTags(this Schema schema, long id, string name, Partitioning partitioning, TagsFieldProperties properties = null)
 {
     return(schema.AddField(Tags(id, name, partitioning, properties)));
 }
示例#4
0
 public static NestedField <TagsFieldProperties> Tags(long id, string name, TagsFieldProperties properties = null)
 {
     return(new NestedField <TagsFieldProperties>(id, name, properties ?? new TagsFieldProperties()));
 }
示例#5
0
 public static RootField <TagsFieldProperties> Tags(long id, string name, Partitioning partitioning, TagsFieldProperties properties = null, IFieldSettings settings = null)
 {
     return(new RootField <TagsFieldProperties>(id, name, partitioning, properties, settings));
 }
示例#6
0
 public static NestedField <TagsFieldProperties> Tags(long id, string name, TagsFieldProperties properties = null, IFieldSettings settings = null)
 {
     return(new NestedField <TagsFieldProperties>(id, name, properties, settings));
 }