上一页 1 2 3 4 5 6 7 8 9 ··· 20 下一页
摘要: 今天遇到一个特别的需求,需要从下面的字符串中转换成一个DateTime对象: 主要问题是这个时间不是标准的时间,而是自定义的格式,即开头是月-日,然后是时间。 使用最常用的DateTime.Parse(string dateTimeStr)无法转换,问题就在于这个自定义格式上。   搜索了之后,我找 阅读全文
posted @ 2016-03-15 14:57 怪咖Eric 阅读(841) 评论(0) 推荐(0) 编辑
摘要: C#中的日期处理函数  //2013年4月24日  this.TextBox6.Text = System.DateTime.Now.ToString("D");  //2013-4-24  this.TextBox7.Text = System.DateTime.Now.ToString("d") 阅读全文
posted @ 2016-03-15 14:53 怪咖Eric 阅读(328) 评论(0) 推荐(0) 编辑
摘要: 1、查询Student表中的所有记录的Sname、Ssex和Class列。 SQL:select sname,ssex,class from Students linq:from s in Students select new{s.sname,s.ssex,s.class} lambda:Stud 阅读全文
posted @ 2016-03-07 16:30 怪咖Eric 阅读(780) 评论(0) 推荐(0) 编辑
摘要: http://www.cnblogs.com/threestone/archive/2012/01/06/2382322.html 阅读全文
posted @ 2016-03-01 10:17 怪咖Eric 阅读(131) 评论(0) 推荐(0) 编辑
摘要: 目录 1. 概述 2. from子句 3. where子句 4. select子句 5. group子句 6. into子句 7. 排序子句 8. let子句 9. join子句 10. 小结 1. 概述 LINQ的全称是Language Integrated Query,中文译成“语言集成查询”。 阅读全文
posted @ 2016-02-25 15:29 怪咖Eric 阅读(416) 评论(0) 推荐(0) 编辑
摘要: EF框架step by step(1)—Database-First EF框架step by step(2)—Model-First EF框架step by step(3)—Code-First 通过项目,我们了解到EF框架有三种数据持久化的方式,也就是标题中我所提到的三种。那么这些方式之间又有什么 阅读全文
posted @ 2016-02-25 14:56 怪咖Eric 阅读(7528) 评论(1) 推荐(0) 编辑
摘要: http://www.runoob.com/try/try.php?filename=jqueryui-example-position-cycler <!doctype html><html lang="en"><head> <meta charset="utf-8"> <title>jQuery 阅读全文
posted @ 2016-02-24 11:32 怪咖Eric 阅读(657) 评论(1) 推荐(0) 编辑
摘要: http://www.runoob.com/try/try.php?filename=jqueryui-example-datepicker-dropdown-month-year <!doctype html><html lang="en"><head> <meta charset="utf-8" 阅读全文
posted @ 2016-02-24 11:01 怪咖Eric 阅读(168) 评论(0) 推荐(0) 编辑
摘要: JQuery的extend扩展方法: Jquery的扩展方法extend是我们在写插件的过程中常用的方法,该方法有一些重载原型,在此,我们一起去了解了解。 一、Jquery的扩展方法原型是: extend(dest,src1,src2,src3...); 它的含义是将src1,src2,src3.. 阅读全文
posted @ 2016-02-23 12:37 怪咖Eric 阅读(17452) 评论(2) 推荐(4) 编辑
摘要: 问题描述:支持"XXContext"(泛指之类的数据库上下文模型)上下文的模型已在数据库创建后发生更改。请考虑使用 Code First 迁移更新数据库。 问题解决:坑爹的MVC会敏感的捕捉数据库的更改,并且自动的在数据库生成监视上下文模型发生改动的表,只需将其删除即可:具体,这里以SQL数据库为例 阅读全文
posted @ 2016-02-23 09:27 怪咖Eric 阅读(398) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 20 下一页