-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBackgrid.cs
39 lines (34 loc) · 1002 Bytes
/
Backgrid.cs
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Backgrid
{
public class Column
{
public string name { get; set; } //the database field name
public string label { get; set; } //visible name
public string cell { get; set; } //type: string, number, date, uri, email, time, datetime
public static string getType(string dbtype) {
switch (dbtype)
{
case "string":
case "String":
return "string";
break;
case "Int32": return "number";
break;
case "Int16": return "number";
break;
case "Int64": return "number";
break;
case "DateTime": return "datetime";
break;
}
return "string";
}
}
public class ResultSet
{
}
}