C#_自訂簡單ORM(二)代碼下載

來源:互聯網
上載者:User

標籤:test   code   實體   測試   技術分享   div   column   datetime   file   

 

測試實體:

    [TableAttribute("TEST_STUDENT")]    public class Student : MyBaseClass    {        /// <summary>        ///         /// </summary>        [ColumnAttribute("GUID", DbType.AnsiString, IsPK = true)]        public string Guid        { get; set; }        [ColumnAttribute("Name", DbType.AnsiString)]        public string Name        { get; set; }        [ColumnAttribute("Age", DbType.Int32)]        public Int32? Age        { get; set; }        [ColumnAttribute("Height", DbType.Decimal)]        public Decimal? Height        { get; set; }        [ColumnAttribute("Birthday", DbType.DateTime)]        public DateTime? Birthday        { get; set; }    }

測試代碼:

private void SelectTest(ISqlHelper helper)        {            MyDbHelper fh = new MyDbHelper(helper);            List<Student> lst = null;            Student stu = new Student();            stu.SetHelper(helper);            stu.Name = "chyun";            lst = fh.Select<Student>(stu);            lst = stu.Select<Student>();            stu = new Student();            stu.SetHelper(helper);            stu.Age = 26;            lst = fh.Select<Student>(stu);            lst = stu.Select<Student>();            stu = new Student();            stu.SetHelper(helper);            stu.Age = 26;            stu.Height = 1.78M;            lst = fh.Select<Student>(stu);            lst = stu.Select<Student>();            stu = new Student();            stu.SetHelper(helper);            stu.Height = 1.78M;            lst = fh.Select<Student>(stu);            lst = stu.Select<Student>();        }        private void InsertTest(ISqlHelper helper)        {            Student stu = new Student();            stu.SetHelper(helper);            stu.Guid = "E47F2C60EF00488B9F48747FACC41EC5";            stu.Name = "chyun";            stu.Age = 26;            stu.Height = 1.78M;            stu.Birthday = DateTime.Parse("1988-06-07 10:30:00");            stu.Insert();            stu = new Student();            stu.SetHelper(helper);            stu.Guid = Guid.NewGuid().ToString();            stu.Name = "chyun";            //stu.Age = 26;            stu.Height = 1.78M;            stu.Birthday = DateTime.Parse("1988-06-07 10:31:00");            stu.Insert();            stu = new Student();            stu.SetHelper(helper);            stu.Guid = Guid.NewGuid().ToString();            stu.Name = "chyun";            stu.Age = 27;            stu.Height = 1.781M;            stu.Birthday = DateTime.Parse("1988-06-07 10:32:00");            stu.Insert();        }        private void UpdateTest(ISqlHelper helper)        {            Student stu = new Student();            stu.SetHelper(helper);            stu.Guid = "E47F2C60EF00488B9F48747FACC41EC5";            stu.Name = "chyun";            stu.Age = 16;            stu.Height = 1.785M;            stu.Birthday = DateTime.Parse("1988-06-07 10:30:30");            stu.UpdateByPk();        }        private void DeleteTest(ISqlHelper helper)        {            Student stu = new Student();            stu.SetHelper(helper);            stu.Guid = "E47F2C60EF00488B9F48747FACC41EC5";            stu.Name = "chyun";            stu.Age = 16;            stu.Height = 1.785M;            stu.Birthday = DateTime.Parse("1988-06-07 10:30:30");            stu.DeleteByPk();        }

 歡迎指正 點擊下載代碼  

QQ:519409748

C#_自訂簡單ORM(二)代碼下載

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.