码迷,mamicode.com
首页 >  
搜索关键字:linq to objects    ( 10076个结果
君仙小一时的第二周温习
我是先写的Model的表: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Compone ...
分类:其他好文   时间:2020-07-26 22:51:44    阅读次数:79
简单C#、asp.net mvc验证码的实现
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Text; using System.Drawing; using System.IO; namespa ...
分类:Windows程序   时间:2020-07-25 23:32:41    阅读次数:86
【NX二次开发】获取当前鼠标选中的对象 UF_UI_ask_global_sel_object_list
先选择多个对象object,然后使用此函数获取选择的对象的tag,最后就可以使用object的一些函数了。 例子: tag_t *tagObjects; int iCount=0; UF_UI_ask_global_sel_object_list(&iCount, &tagObjects); for ...
分类:其他好文   时间:2020-07-23 22:14:59    阅读次数:78
Django手写分页
def get(self, request, *args, **kwargs): # 获取当前页码 pg = int(request.GET.get('page', 1)) obj = Student.objects.all().order_by("id") # 创建分页器对象 page_obj = ...
分类:其他好文   时间:2020-07-22 20:58:35    阅读次数:93
LINQ的左连接、右连接、内连接
1、左连接: var LeftJoin = from emp in ListOfEmployees join dept in ListOfDepartment on emp.DeptID equals dept.ID into JoinedEmpDept from dept in JoinedEmp ...
分类:其他好文   时间:2020-07-21 23:18:05    阅读次数:103
django学习第八天
orm多条操作 删除和修改 修改 在一对一和一对多关系时,和单表操作是一样的 一对一 一个作者对应一个信息 ad_obj = models.AuthorDetail.objects.get(id=1) models.Author.objects.filter(id=1).update(name='x ...
分类:其他好文   时间:2020-07-21 22:31:31    阅读次数:72
linq介绍及工作中应用两例——左联与内联,linq循环方法
#1 linq介绍 ##1.1 linq产生背景 一个应用服务后台程序,肯定会需要格式各样的数据检索跟操作,而这些数据在过去的这些年里一般都会包含在关系型数据库或者xml文件中。 .Net3.5版本发行之前,传统的数据源访问方式就是直接对数据库或者xml文件进行检索操作。在.Net3.5 Visua ...
分类:其他好文   时间:2020-07-21 22:24:15    阅读次数:64
NX二次开发】Block UI 体收集器
获取控件选择的体 1 std::vector<TaggedObject*>objects=bodySelect0->GetSelectedObjects(); 2 tag_t tagBodyH=NULL_TAG; 3 tagBodyH=objects[0]->Tag(); ...
分类:其他好文   时间:2020-07-21 14:09:37    阅读次数:75
如何使mysql中的数据同步到es中?
方案一:(同步操作,代码侵入性比较高) 在往数据库中增加一条数据的同时,向es中也插入一条 Books.objects.create() 向es中插入一条数据 方案二:使用celery起一个定时任务 在用户低峰的时候,执行定时任务(比如每天晚上00:00),把当天新增的数据查询出来并处理成Json格 ...
分类:数据库   时间:2020-07-21 11:35:01    阅读次数:120
网络通讯C#(TCP)简单实现通讯
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks; using System.Net;using System.Net.Sock ...
分类:Windows程序   时间:2020-07-20 15:30:04    阅读次数:84
10076条   上一页 1 ... 14 15 16 17 18 ... 1008 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!