码迷,mamicode.com
首页 >  
搜索关键字:linq to objects    ( 10076个结果
用ASP来简化通信程序的创建
使用 CDOSYS 发送电子邮件 CDO (Collaboration Data Objects) 是一项微软的技术,设计目的是用来简化通信程序的创建。 CDOSYS 是 ASP 中的内置组件。我们会向您展示如何使用该组件来发送电子邮件。 CDONTs 怎么样? 微软已经在 Windows 2000 ...
分类:Web程序   时间:2020-10-19 22:42:34    阅读次数:29
C# validate the string value whether it is valid json
1 using Newtonsoft.Json; 2 using Newtonsoft.Json.Linq; 3 4 static void Main(string[] args) 5 { 6 TestJsonValid(); 7 Console.ReadLine(); 8 } 9 10 stati ...
分类:Windows程序   时间:2020-10-14 20:41:00    阅读次数:37
C#的Socket通信Demo
using System;using System.Collections.Generic;using System.Linq;using System.Net;using System.Net.Sockets;using System.Text;using System.Threading;usi ...
分类:Windows程序   时间:2020-10-13 17:36:49    阅读次数:35
django 外键的增删改查,一对多和多对多
1.一对一和一多对多是一样的,多对多不太一样 2.增 post class BookView(APIView): def post (self,request,*args,**kwargs): publish=Publish.objects.filter(pk=1).first() author=A ...
分类:其他好文   时间:2020-10-12 20:01:23    阅读次数:32
apline无法向gitlab上传git lfs问题
1 背景 在k8s中基于alpine做底层系统的容器进行git lfs push操作时,发现报错无法上传成功 Fatal error: Server error: http://git.ops.xxxxx.com/xxxx/yyyy.git/gitlab-lfs/objects/b6f9dd313c ...
分类:Web程序   时间:2020-10-10 17:45:46    阅读次数:29
Django - 配置缓存
前言 Django的默认缓存是存在内存当中,重启服务缓存就失效了。 文章选择用redis做缓存,需要预先安装redis数据库并启动服务 安装pip install django-redis 附带django-redis中文文档:django-redis中文文档 代码实现 在项目中的setting.p ...
分类:其他好文   时间:2020-09-24 20:47:27    阅读次数:47
消除代码中的坏味道,编写高质量代码
消除代码中的坏味道,编写高质量代码 Intro# 想要写出较好的代码,保证代码的高质量需要时刻警惕代码中的坏味道,今天分享一下,我觉得平时写的代码中可能会出现的坏味道代码的一些示例 常见的坏味道代码# Bug Logically(null check etc.) 严格的来说,这可能是一个 BUG 级 ...
分类:其他好文   时间:2020-09-24 00:08:21    阅读次数:51
关于特性的理解和使用
将特性插入,就是插入一个标志?然后再类typeof中存在一(字段?方法?)对多(特性) 当调用特性的方法的时候就是调用想对应类的 方法; using System; using System.Collections.Generic; using System.Linq; using System.T ...
分类:其他好文   时间:2020-09-18 01:20:53    阅读次数:25
C# 操作Excel
前期准备:安装微软Excel,需要调用excel类库,Microsoft.Excel XXX Object Library 1 sing System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.T ...
分类:Windows程序   时间:2020-09-18 00:44:22    阅读次数:60
C#操作Sql数据库之对数据库进行增删改查
测试窗体为: 直接上代码: using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using ...
分类:数据库   时间:2020-09-17 12:31:54    阅读次数:43
10076条   上一页 1 ... 10 11 12 13 14 ... 1008 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!