using System;using System.Collections.Generic;using
System.Linq;using System.Text;using System.Windows.Forms;namespace Common{ ///
/// DataGrid...
using System;using System.Collections.Generic;using
System.Linq;using System.Text;using System.Windows.Forms;namespace Common{ ///
/// 列表视图操作类 ...
分类:
其他好文 时间:
2014-05-08 19:30:25
阅读次数:
337
using System;using System.Collections.Generic;using
System.Linq;using System.Text;using System.Threading.Tasks;using
ZedGraph;namespace TestZedGraphCo...
分类:
其他好文 时间:
2014-05-08 19:21:43
阅读次数:
530
using System;using System.Collections.Generic;using
System.Linq;using System.Text;using System.Windows.Forms;namespace Common{ ///
/// TextBox控...
分类:
其他好文 时间:
2014-05-08 19:15:06
阅读次数:
293
IntroductionRecently I was playing around with
Entity Framework (EF) and evaluating it for some projects. I had a very hard
time figuring out how to a...
分类:
数据库 时间:
2014-05-08 13:05:33
阅读次数:
678
using System;using System.Collections.Generic;using
System.Linq;using System.Text;using System.Windows.Forms;namespace Common{ ///
/// 复选框操作类 ...
分类:
其他好文 时间:
2014-05-07 20:22:28
阅读次数:
345
首先看一下什么是懒加载:
所谓懒加载(lazy)就是延时加载,延迟加载。
什么时候用懒加载呢,我只能回答要用懒加载的时候就用懒加载。
至于为什么要用懒加载呢,就是当我们要访问的数据量过大时,明显用缓存不太合适,
因为内存容量有限 ,为了减少并发量,减少系统资源的消耗,
我们让数据在需要的时候才进行加载,这时我们就用到了懒加载。
比如部门ENTITY和员工EN...
分类:
其他好文 时间:
2014-05-07 05:39:35
阅读次数:
556
package com.rgy.entity;
import java.awt.BorderLayout;
import java.awt.Font;
import java.awt.GridLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.Bo...
分类:
编程语言 时间:
2014-05-07 03:23:31
阅读次数:
433
1 using System; 2 using System.Collections.Generic;
3 using System.Linq; 4 using System.Text; 5 using System.Threading; 6 7 8
namespace Synchroniza...
分类:
其他好文 时间:
2014-05-07 02:18:18
阅读次数:
287
本篇内容主要包括:1.能够转化为并行循环的条件2.并行For循环的用法:Parallel.For3.并行ForEach的用法Parallel.ForEach4.并行LINQ(PLINQ)的用法AsParallel()5.并行中断与并行停止的用法与区别6.外部控制循环取消的方法(Break,Stop)...
分类:
Web程序 时间:
2014-05-07 00:33:18
阅读次数:
441