-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSysExternalFileFormatCatalog.g.cs
More file actions
204 lines (177 loc) · 5.24 KB
/
SysExternalFileFormatCatalog.g.cs
File metadata and controls
204 lines (177 loc) · 5.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace Microsoft.SqlServer.CatalogStore
{
using System;
using System.Data.SqlClient;
using Microsoft.Data.Sqlite;
using Microsoft.EntityFrameworkCore;
[System.ComponentModel.DataAnnotations.Schema.TableAttribute("sys_external_file_formats")]
public partial class SysExternalFileFormatCatalog
{
private System.Nullable<int> _file_format_id;
private string _name;
private string _format_type;
private string _field_terminator;
private string _string_delimiter;
private string _date_format;
private System.Nullable<bool> _use_type_default;
private string _serde_method;
private string _row_terminator;
private string _encoding;
private string _data_compression;
private System.Nullable<int> _first_row;
[System.ComponentModel.DataAnnotations.Schema.ColumnAttribute("file_format_id")]
public System.Nullable<int> FileFormatId
{
get
{
return this._file_format_id;
}
set
{
this._file_format_id = value;
}
}
[System.ComponentModel.DataAnnotations.Schema.ColumnAttribute("name")]
[System.ComponentModel.DataAnnotations.KeyAttribute()]
public string Name
{
get
{
return this._name;
}
set
{
this._name = value;
}
}
[System.ComponentModel.DataAnnotations.Schema.ColumnAttribute("format_type")]
public string FormatType
{
get
{
return this._format_type;
}
set
{
this._format_type = value;
}
}
[System.ComponentModel.DataAnnotations.Schema.ColumnAttribute("field_terminator")]
public string FieldTerminator
{
get
{
return this._field_terminator;
}
set
{
this._field_terminator = value;
}
}
[System.ComponentModel.DataAnnotations.Schema.ColumnAttribute("string_delimiter")]
public string StringDelimiter
{
get
{
return this._string_delimiter;
}
set
{
this._string_delimiter = value;
}
}
[System.ComponentModel.DataAnnotations.Schema.ColumnAttribute("date_format")]
public string DateFormat
{
get
{
return this._date_format;
}
set
{
this._date_format = value;
}
}
[System.ComponentModel.DataAnnotations.Schema.ColumnAttribute("use_type_default")]
public System.Nullable<bool> UseTypeDefault
{
get
{
return this._use_type_default;
}
set
{
this._use_type_default = value;
}
}
[System.ComponentModel.DataAnnotations.Schema.ColumnAttribute("serde_method")]
public string SerdeMethod
{
get
{
return this._serde_method;
}
set
{
this._serde_method = value;
}
}
[System.ComponentModel.DataAnnotations.Schema.ColumnAttribute("row_terminator")]
public string RowTerminator
{
get
{
return this._row_terminator;
}
set
{
this._row_terminator = value;
}
}
[System.ComponentModel.DataAnnotations.Schema.ColumnAttribute("encoding")]
public string Encoding
{
get
{
return this._encoding;
}
set
{
this._encoding = value;
}
}
[System.ComponentModel.DataAnnotations.Schema.ColumnAttribute("data_compression")]
public string DataCompression
{
get
{
return this._data_compression;
}
set
{
this._data_compression = value;
}
}
[System.ComponentModel.DataAnnotations.Schema.ColumnAttribute("first_row")]
public System.Nullable<int> FirstRow
{
get
{
return this._first_row;
}
set
{
this._first_row = value;
}
}
}
}