本月博客排行
-
第1名
龙儿筝 -
第2名
zysnba -
第3名
johnsmith9th - wy_19921005
- sgqt
年度博客排行
-
第1名
宏天软件 -
第2名
青否云后端云 -
第3名
龙儿筝 - gashero
- wallimn
- vipbooks
- benladeng5225
- wy_19921005
- fantaxy025025
- javashop
- qepwqnp
- e_e
- 解宜然
- zysnba
- ssydxa219
- sam123456gz
- ranbuijj
- arpenker
- tanling8334
- kaizi1992
- xpenxpen
- gaojingsong
- wiseboyloves
- xiangjie88
- ganxueyun
- sichunli_030
- xyuma
- wangchen.ily
- jh108020
- zxq_2017
- jbosscn
- lemonhandsome
- luxurioust
- Xeden
- lzyfn123
- forestqqqq
- zhanjia
- nychen2000
- ajinn
- wjianwei666
- johnsmith9th
- hanbaohong
- daizj
- 喧嚣求静
- silverend
- mwhgJava
- kingwell.leng
- lchb139128
- lich0079
- kristy_yy
最新文章列表
lambda表达式2
DataContext
DataContext类型(数据上下文)功能:
1.以日志形式记录DataContext生成的SQL
2.执行SQL(包括查询和更新语句)
3.创建和删除数据库
DataContext是实体和数据库之间的桥梁。
定义实体类
Customer.cs
using System;
using System.Collections.Gener ...
Linq To XML:用名称查找元素
XElement firstParticipant;
// A full document with all the bells and whistles.
XDocument xDocument = new XDocument(
new XDeclaration("1.0", "UTF-8", "yes"),
...
Linq To XML:在结点下查询某一类型结点
下面的方法是查询 element 元素类型的结点
XElement firstParticipant;
// A full document with all the bells and whistles.
XDocument xDocument = new XDocument(
new XDeclaration("1.0", "UTF-8 ...
Linq To XML:论XStreamingElement与XElement的不同
XStreamingElement 从名字上面,已经能看出它是使用流的模式来创建Element
看到它的MSDN在线文档(http://msdn.microsoft.com/zh-cn/library/system.xml.linq.xstreamingelement(v=vs.95).aspx#Y200)
是这么解释的
XElement 在操作结点时,是把变量加到结点上,而XStream ...
Linq To XML把对象数组写入xml
enum ParticipantTypes
{
Author = 0,
Editor
}
class BookParticipant
{
public string FirstName;
public string LastName;
public ParticipantTypes ParticipantType;
...
silverlight调用exe程序
一定要在项目中添加引用Microsoft.CSharp
这里是打开写字板程序
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Runtime.InteropServices.Automation;
using System.Window ...
《Ext JS高级程序设计》节选: 一个结合DataWrite和RowEditor的Grid示例(2)
在定义中,需要监听
beforeedit
事件,其作用是判断当前编辑状态是增加新记录还是编辑原有记录,如果是增加新记录,则
cid
字段的输入框需要处于允许编辑状态。否则,
cid
字段的输入框需要处于不允许编辑状态。因为当新增一个记录时,
Sotre
记录集中的每个记录的关键字使用的是
id
的值,而不是
cid
的值,虽然在新增操作成功后,会根据服务器端返回的记录修改这个 ...
两个List的交集,补集
用linq是很好实现的
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleProgram
{
class Program
{
static void Main(string[] args)
{
var ...
在后台把DataTable组织成JSON,送到前台动态填充UltraWebGrid
使用的库是:Newtonsoft.Json 为asp.net 3.5开发的 Beta4版本,获取数据库数据用的是
Microsoft EnterpriseLibrary 4.1
其中扩展了这个库的功能,使之最适合把DataTable,DataSet,DataRow转为JSON模式
另外使用了Jquery的$.getJSON来解析后台传过来的JSON格式
另参考了:http://blog.cs ...