今天再用EF新增想MSSQL数据库新增一条数据的时候,出现了从 datetime2 数据类型到
datetime 数据类型的转换产生一个超出范围的值我当时郁闷的以为是C#中的 DateTime(yyyy/mm/dd)
的格式和数据库(yyyy-mm-dd)的格式不一样造成的,结果这样以为的话没有什么...
分类:
其他好文 时间:
2014-05-23 09:53:11
阅读次数:
247
using System;using System.Collections.Generic;using
System.Linq;using System.Text;using System.Management;using
System.Threading.Tasks;namespace TaskT...
分类:
编程语言 时间:
2014-05-23 08:40:04
阅读次数:
413
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Tex...
分类:
其他好文 时间:
2014-05-22 12:36:05
阅读次数:
243
1 使用First()/FirstOrDefault()、Last()/LastOrDefault()方法返回序列中的第一个或者最后一个元素时,应该确保序列已经被正确排序。
int[] numbers = { 3, 1, 23, 10, 5, 12, 7, 2, 4};
int first = numbers.First(); //输出3
int firstOrdered = numbers.O...
分类:
其他好文 时间:
2014-05-22 07:35:10
阅读次数:
196
有图真相:ASP.NET代码: C#代码: 1 using System; 2 using
System.Collections.Generic; 3 using System.Linq; 4 using Syste...
分类:
Web程序 时间:
2014-05-22 05:35:59
阅读次数:
338
using System;using
System.Collections.Generic;using System.Linq;using System.Text;using
System.Windows.Forms;using System.IO;namespace WisdomCity.Enti...
分类:
其他好文 时间:
2014-05-22 05:08:36
阅读次数:
271
using System;using System.Collections.Generic;using
System.ComponentModel;using System.Data;using System.Drawing;using
System.Linq;using System.Text;u...
//wpf中实现类似于qq的抖动窗效果//前段页面 //后台using System; using
System.Collections.Generic; using System.Linq; using System.Text; using
System.Window...
分类:
其他好文 时间:
2014-05-22 02:20:32
阅读次数:
212
参考资料《大话设计模式》职责链模式:using System;using
System.Collections.Generic;using System.Linq;using System.Text;namespace
ds_chainofresponsibility{ class Progr...
分类:
其他好文 时间:
2014-05-20 12:52:03
阅读次数:
328
using System;using System.Collections.Generic;using
System.Linq;using System.Text;using System.Data;using
System.Data.SqlClient;namespace AddressBook{...
分类:
数据库 时间:
2014-05-20 10:08:21
阅读次数:
328