S2Dao.NETã§ã¯SQL Serverã®Identityåããã©ã¤ããªã¼ ãã¼ã«æå®ãã¦ãããã¼ãã«ã«å¯¾ãã¦ãDTOã®å¤ãèªåã¤ã³ãµã¼ããã¦ãããæ©è½ãããã¾ããä¾ãã° CREATE TABLE [Company] ( [CompanyID] [int] IDENTITY (1, 1) NOT NULL, [CompanyName] [nvarchar] (50) ) ã¨ãããããªãã¼ãã«ããã£ãå ´åã public class Company { private int companyID; private string companyName; [ID("identity")] public int CompanyID { set { this.companyID = value; } get { return this.companyID; } } public string C
{{#tags}}- {{label}}
{{/tags}}