|
|
|
@ -16,12 +16,14 @@ namespace GBase |
|
|
|
/// <summary> |
|
|
|
/// <summary> |
|
|
|
/// A column of a <see cref="IGBaseTable"/> |
|
|
|
/// A column of a <see cref="IGBaseTable"/> |
|
|
|
/// </summary> |
|
|
|
/// </summary> |
|
|
|
public GBaseColumn(string name) |
|
|
|
public GBaseColumn(string name, Type type) |
|
|
|
{ |
|
|
|
{ |
|
|
|
Name = name; |
|
|
|
Name = name; |
|
|
|
|
|
|
|
Type = type; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public string Name { get; } |
|
|
|
public string Name { get; } |
|
|
|
|
|
|
|
public Type Type { get; } |
|
|
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
/// <summary> |
|
|
|
/// The <see cref="IAsyncDisposable.DisposeAsync"/> method |
|
|
|
/// The <see cref="IAsyncDisposable.DisposeAsync"/> method |
|
|
|
|