1.调用:
UserList = UserList.ToList().Intersect(userIDList, new MyUserComparer()).AsQueryable();
2.需要重写的方法:
public class MyUserComparer : IEqualityComparer
{
public bool Equals(MyUser x, M...
分类:
其他好文 时间:
2014-10-29 17:02:48
阅读次数:
124
usingSystem;
usingSystem.Collections.Generic;
usingSystem.Linq;
usingSystem.Text;
usingSystem.Threading.Tasks;
usingSystem.Linq.Expressions;
namespaceConsoleApplication3
{
classProgram
{
staticvoidMain(string[]args)
{
//重要的类*****************************..
分类:
其他好文 时间:
2014-09-21 21:24:41
阅读次数:
266
在写LINQ语句的时候,往往会看到.AsEnumerable() 和
.AsQueryable() 。例如:string strcon ="Data Source=.\\SQLEXPRESS;Initial
Catalog=Db_Example;Persist Security Info=True;...
分类:
其他好文 时间:
2014-05-28 16:07:41
阅读次数:
418