码迷,mamicode.com
首页 >  
搜索关键字:linq to entities    ( 7131个结果
C#基础之集合1
1.C#中集合用处无处不在,可是对于类似于小编这样的初学者在初次使用集合会遇到一些小问题.话不多说,看看代码。code: 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.T...
分类:其他好文   时间:2014-08-24 23:26:43    阅读次数:256
上班随便写写
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;u...
分类:其他好文   时间:2014-08-24 11:29:52    阅读次数:264
Asp.net MVC4.0自定义Html辅助方法
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Web;using System.Web.Mvc;namespace MyEF.ExtentionHtmlHe...
分类:Web程序   时间:2014-08-24 01:33:41    阅读次数:239
LinQ to Sql
在java 平台上,ORM这一块Hiberante是相当的.但是在谈到.NET平台.ORM框架就有些不一样了.Nhibernate,Nbeat和Castel,以及我要说的linQ to Sql。 Tosql是微软自己的产品。现在用的或许很少了,但是如果做一个中小型的项目,开发和部署还是很好的,不必考虑第 三方库。但是Tosql 毕竟是直接面对数据库的。这个操作我有些用不惯,这里就简单介...
分类:数据库   时间:2014-08-23 23:02:41    阅读次数:488
[Windows问题-5] C#调用CMD命令
问题:有时候有一些DOS命令需要我们在执行程序的时候调用,这需要使用C#提供的相关接口。 代码如下,很简单,相信大家都能看懂,我就不赘述了。 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Syste...
分类:Windows程序   时间:2014-08-23 22:59:41    阅读次数:361
ArrayList排序
1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Collections; 6 7 namespace ArrySort 8 {.....
分类:其他好文   时间:2014-08-23 22:51:51    阅读次数:201
SqlHelper
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Configuration; using System.Data.SqlClient; using System.Data; using System.Reflection; namespace LL...
分类:数据库   时间:2014-08-23 11:22:30    阅读次数:269
C#里List.Sort的用法
using System;using System.Collections.Generic;using System.Linq;using System.Text; namespace ListSort{ class Program { static void Main(s...
分类:其他好文   时间:2014-08-22 23:43:59    阅读次数:233
LINQ查询中的IEnumerable<T>和IQueryable<T>
LINQ查询方法一共提供了两种扩展方法,在System.Linq命名空间下,有两个静态类:Enumerable类,它针对继承了IEnumerable接口的集合进行扩展;Queryable类,针对继承了IQueryable接口的集合进行扩展。我们会发现接口IQueryable实际也是继承了IEnume...
分类:其他好文   时间:2014-08-22 17:45:19    阅读次数:316
解决Skyline 6.5版本中3DML模型单体化后外部网页挂接问题
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;u...
分类:Web程序   时间:2014-08-22 15:51:38    阅读次数:283
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!