fi 相关的软件列表

使用使用.net core在服务器端获取api传递的参数过程
C#.net

使用使用.net core在服务器端获取api传递的参数过程

2020-06-07 标签:n,et,core,服务器,获取,api,传递,参数,过程,这篇文章,主要,介绍,文中,通过,示例,代码,非常,详细,大家

这篇文章主要介绍了.net core在服务器端获取api传递的参数过程,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下在 ActionFilterAttribute 的OnActionExecutionAsync 中使用如下代码从流中读取用户参数//

.NET C# protobuf自动更新cs文件
C#.net

.NET C# protobuf自动更新cs文件

2020-06-03 标签:c,protobuf,自动更新,cs,文件,网上,教程,大都是,手动,通过,protoc,编译,比较,难用,当前,工程,添加,google,grpc,tools

网上的教程大都是手动通过protoc编译, 比较难用给当前工程添加"Google.Protobuf"和"Grpc.Tools"的引用(通过nuget), 然后添加proto文件, 编辑.csproj文件netcoreapp3.1runtime; build; native; contentfiles

.NET C#排序算法之归并排序
C#.net

.NET C#排序算法之归并排序

2020-06-03 标签:c,排序,算法,归并,本文,实例,为大,分享,实现,具体,代码,大家,参考,具体内容,如下,目标,数组,子表,起始

本文实例为大家分享了C#实现归并排序具体代码,供大家参考,具体内容如下代码://归并排序(目标数组,子表的起始位置,子表的终止位置)private static void MergeSortFunction(int[] array, int first, int last){try{if (firs

c#利用Session对象实现购物车的方法示例
C#.net

c#利用Session对象实现购物车的方法示例

2020-06-03 标签:c,利用,session,对象,实现,购物,方法,示例,本文,分享,大家,留个,笔记,shopcart,aspx,csusing,system,using,data

本文实现了c# Session对象实现购物车的方法,分享给大家,也给自己留个笔记://shopcart.aspx.csusing System;using System.Data;using System.Configuration;using System.Collections;using Sy

lambda The specified type member 'Date' is not supported in LINQ to Entities
C#.net

lambda The specified type member 'Date' is not supported in LINQ to Entities

2020-06-02 标签:lambda,The,specified,type,member,Date,supported,LINQ,Entities,var,DateTime,语句,附带,orders,db,Bookings,bookingTime,ToList

今天在写lambda的时候提示错误,lambda The specified type member 'Date' is not supported in LINQ to Entities,也就是LINQ to Entities 异常中不支持指定的类型成员'Date',lambda语句中一般不支持对

FileZilla 421 Could not create socket
服务器

FileZilla 421 Could not create socket

2020-05-25 标签:FileZilla,421,Could,create,socket,设置,端口,报错,Server,Passive,mode,settings,Use,custom,port,rang,20,21,两端

今天在设置FileZilla Server 出现报错 :421 Could not create socket.这个是端口设置的问题.如果你只有一个端口给FileZilla,肯定是不行的.打开设置,找到[Passive mode settings, 在[Use custom port rang] 里

Entity Framework表名设置不生成复数
C#.net

Entity Framework表名设置不生成复数

2020-05-22 标签:Entity,Framework,表名,设置,生成,复数,TasksDaily,modelBuilder,OnModelCreating,DbModelBuilder,形式,TasksDailies,protected,override,void,Conventions,Model,去除

C# Entity Framework表名设置不生成复数(ef 表名不生成复数)今天进行新建表查询报错:An error occurred while executing the command definition. See the inner exception for details.具体原因是:对

HttpClient 未能创建 SSL/TLS 安全通道
C#.net

HttpClient 未能创建 SSL/TLS 安全通道

2020-05-10 标签:HttpClient,未能,创建,SSL,TLS,安全,通道,SecurityProtocolType,ServicePointManager,如下,httpClient,https,delegate,return,true,SecurityProtocol,Ssl3

今天用httpClient进行获取https内容出错如下:HttpClient 未能创建 SSL/TLS 安全通道.应该是证书的问题.添加如下代码即可.ServicePointManager.ServerCertificateValidationCallback = delegate { retur