码迷,mamicode.com
首页 >  
搜索关键字:linq to entity 多表联合    ( 11784个结果
csharp: Emgu.CV.OCR and Tesseract.OCR Optical Character Recognition
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System. ...
分类:其他好文   时间:2020-07-06 18:13:51    阅读次数:66
OBEX 1.Introduction
1.Introduction 1.1 Tasks, Platforms, and Goals One of the most basic and desirable(向往的,可取的) uses of the IrDA infrared(红外) communication protocols is s ...
分类:其他好文   时间:2020-07-05 23:18:33    阅读次数:55
Code First 约定(Conventions)
Entity Framework 简言之就是一个ORM(Object-Relational Mapper)框架.Code First 使得你能够通过C#的类来描述一个模型,模型如何被发现/检测就是通过一些约定(Conventions)。Conventions 就是一系列规则的集合,被用于对基于类定义... ...
分类:其他好文   时间:2020-07-05 20:59:01    阅读次数:81
test
public ActionResult Index() { var musiclist = from i in ms.MusicInfo select i; //LinQ语句,从数据库中提取数据 //MusicInfo是一张表 return View(musiclist.ToList()); //执 ...
分类:其他好文   时间:2020-07-05 00:22:27    阅读次数:69
巧用 linq select 实现遍历集合返回元素 index
集合元素如下: private List<string> dataSource = new List<string>() { "001", "002", "003", "004", "005" }; C# 代码,之前这样写: public void Run_v1() { var index = 0; ...
分类:其他好文   时间:2020-07-04 13:21:37    阅读次数:97
【web_for_pentester】XML注入
一、XML介绍 二、XML的ENTITY实体 本文长期更新 Orz ENTITY实体: 如果在XML文档中需要频繁使用某一条数据,我们可以预先给这个数据起一个别名。即一个ENTITY,然后再在文档中调用它。 XML定义了两种类型的ENTITY,一种在XML文档中使用,另一种在为参数在DTD文件中使用 ...
分类:Web程序   时间:2020-07-04 01:16:35    阅读次数:78
C# XDocument
XDocument 说明LINQ处理XML文件的一个类 添加引用 using System.Linq; using System.Xml.Linq; using System.Xml.XPath; 引用xml文件 XDocument xml = XDocument.Load("IOS.xml"); ...
分类:Windows程序   时间:2020-07-03 15:22:41    阅读次数:86
elasticsearch5.6.8 创建TransportClient工具类
ProjectConfig: package com.ultiwill.utils; import com.ultiwill.entity.EsConfigEntity; import com.alibaba.fastjson.JSON; public class ProjectConfig { p ...
分类:其他好文   时间:2020-07-03 12:32:39    阅读次数:54
SQLServer pivot 行转列
设计表如下 --收入表 CREATE TABLE income ( inid INT PRIMARY KEY IDENTITY(1, 1), indate DATETIME, --时间 intype VARCHAR(10), -- 收入类型 amount DECIMAL(18, 2) --金额 ) ...
分类:数据库   时间:2020-07-02 10:45:44    阅读次数:58
C# 对List<T>进行排序
1、使用Sort() 当T是简单类型,int,double之类的可以直接用 var a = new List<int>(); a.Add(1); a.Add(5); a.Add(4); a.Sort();//排序 2、使用LinQ a = a.OrderByDescending(i => i.Nam ...
分类:编程语言   时间:2020-07-02 10:41:55    阅读次数:56
11784条   上一页 1 ... 22 23 24 25 26 ... 1179 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!