[Table("users")]
public class Users
{
[Key]
public int userID { get; set; }
public int? employeeID { get; set; }
[StringLength(50)]
public string employeeCode { get; set; }
[StringLength(50)]
public string firstname { get; set; }
[StringLength(50)]
public string middlename { get; set; }
[StringLength(50)]
public string lastname { get; set; }
[StringLength(50)]
public string nickname { get; set; }
[StringLength(50)]
public string email { get; set; }
[StringLength(50)]
public string password { get; set; }
public virtual ICollection<Question> Questions { get; set; }
}
Code (C#)
[Table("question")]
public class Question
{
[Key]
public int questionID { get; set; }
public string year { set; get; }
[StringLength(50)]
public string code { get; set; }
[Column(TypeName = "text")]
public string topic { get; set; }
[Column(TypeName = "text")]
public string description { get; set; }
public int? status { get; set; }
public int createdID { get; set; }
[DataType(DataType.Date)]
public DateTime createdDate { get; set; }
public virtual Users user { get; set; }
}
ผมคิดว่าผมน่าจะเป็นแรกที่่ใช้คำนี้ (Wording) ในประเทศไทย
--- SA = System Analysis
--- PA = Programing Analysis
--- XA = Other Analysis
--- OA = Open Source
--- RA = รายได้จุนเจือ เลี้ยงตัวเองได้แบบพอเพียง (ไม่หวังจนไปมากกว่าเดิม และไม่ลืมหวังรวยไปน้อยกว่าเดิม)
หมายความว่า SA + PA + +XA + OA + RA อยู่ในคนคนเดียวกัน ณ.เวลาเดียวกัน
''' <summary>
''' Dim x As String = ThaiDigits("123ABC4")
''' Result = ๑๒๓ABC๔
''' </summary>
''' <param name="str"></param>
''' <returns></returns>
''' <remarks></remarks>
Public Function ThaiDigits(ByVal str As String) As String
Return New RegularExpressions.Regex("[0-9]").Replace(str,
New RegularExpressions.MatchEvaluator(Function(คนงามเพราะหอย)
Return {"๐", "๑", "๒", "๓", "๔", "๕", "๖", "๗", "๘", "๙"}(Integer.Parse(คนงามเพราะหอย.Value))
End Function))
End Function