Overload List
Name | Description | |
---|---|---|
Schema()()()() |
Create a new schema object
| |
Schema(String) |
Create a new schema object specifying a schema like "A,B:int,C:double"
for user defined type schema string must contain C# name of the type
do not use this method with CLR name of type (Type.FullName)
In all other cases create empty schema and add columns using ColumnInfo(string name, Type type)
| |
Schema(array<String>[]()[][]) |
Create a new schema object specifying a schema like {"A", "B:int" , "C:double"}
for user defined type column string must contain C# name of the type
do not use this method with CLR name of type (Type.FullName)
In all other cases create empty schema and add columns using ColumnInfo(string name, Type type)
|