Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ Schema

string? System.ComponentModel.DataAnnotations.Schema.TableAttribute.Schema
getset

Definition at line 12 of file TableAttribute.cs.

13 {
14 get
15 {
16 return _schema;
17 }
18 [param: DisallowNull]
19 set
20 {
21 if (string.IsNullOrWhiteSpace(value))
22 {
24 }
25 _schema = value;
26 }
27 }
static string Format(string resourceFormat, object p1)
Definition SR.cs:118
static string ArgumentIsNullOrWhitespace
Definition SR.cs:14
Definition SR.cs:7