( .NET Core 七龙珠 ) 一、IOT 平台的支持 先看国内优秀的云计算IOT平台(不含QQ互联、小米IOT等针对特定产品的开发者平台,仅列出部分云计算厂商的IOT平台) 阿里云 IOT https://iot.aliyun.com/ 华为物联网 https://develo[......] 继续阅读

2019年12月15日 2条评论 3264点热度 0人点赞 痴者工良 阅读全文

  ( .NET Core Dragon Balls ) 1. Support of IOT Platforms First, let's take a look at some excellent cloud computing IOT platforms in China (excl[......] 继续阅读

2019年12月15日 2条评论 58点热度 0人点赞 痴者工良 阅读全文

在.NET Core 项目钟(类库),使用Entity Framework,建立模型生成数据库时,失败 Could not load assembly 'xxx'. Ensure it is referenced by the startup project 'xxx'. 改成 64 位即可 假[......] 继续阅读

2019年12月15日 0条评论 6471点热度 14人点赞 痴者工良 阅读全文

In a .NET Core project (library), using Entity Framework, the database generation fails when establishing the model. Could not load assembly 'xxx'. E[......]继续阅读

2019年12月15日 0条评论 58点热度 14人点赞 痴者工良 阅读全文

 Directory 1. Introduction 2. Install Virtual Serial Port Software 3. Create a New Project and Add flyfire.CustomSerialPort 4. Description of fly[......] 继续阅读

2019年12月15日 1条评论 56点热度 0人点赞 痴者工良 阅读全文

 目录 1,前言 2,安装虚拟串口软件 3,新建项目,加入 flyfire.CustomSerialPort 4,flyfire.CustomSerialPort 说明 5,开始使用 flyfire.CustomSerialPort 6,实现把数据写入串口 7,实现监听[......] 继续阅读

2019年12月15日 1条评论 3039点热度 0人点赞 痴者工良 阅读全文

Recently, I was studying serial communication in a cross-platform manner under .NET Core, and I came across an article discussing communication in Lin[......] 继续阅读

2019年12月15日 2条评论 88点热度 2人点赞 痴者工良 阅读全文

前些天在学习在 .NET Core下,跨平台使用串口通讯,有一篇文章说到在Linux/物联网下,实现通讯。 主要问题出现在以下两个类库 SerialPortStream flyfire.CustomSerialPort 作者地址: https://www.cnblogs.com/lonelyxmas[......] 继续阅读

2019年12月15日 2条评论 4537点热度 2人点赞 痴者工良 阅读全文

So far, I have interviewed  5  10 companies... The company for this interview task is a listed company. The task is in English (tr[......] 继续阅读

2019年12月15日 3条评论 3455点热度 1人点赞 痴者工良 阅读全文

目前为止,已经面试  5  10 家了。。。 这个试题面试的公司是某一上市公司。 试题是英文的(后面给出翻译): you're given a task of writing a simple program where an and user will be[......] 继续阅读

2019年12月15日 3条评论 3413点热度 1人点赞 痴者工良 阅读全文

SQLite is convenient to use, simple and compact. The author will not elaborate further here; those interested can refer to the following blog. https:/[......] 继续阅读

2019年12月15日 1条评论 68点热度 0人点赞 痴者工良 阅读全文

SQLIte 操作方便,简单小巧,这里笔者就不再过多介绍,感兴趣可以到以下博文 https://blog.csdn.net/qq_31930499/article/details/80420246  文章介绍创建ASP.NET Core 程序,创建模型、上下文,生成数据库,对数据库增删查改[......] 继续阅读

2019年12月15日 1条评论 2998点热度 0人点赞 痴者工良 阅读全文

笔者的前端文件如下   笔者增加Bootstrap 4 和 FontAwersome(字体图标),因为Bootsrap 4已经不再包含图标了。 ASp.Net Core 中,通常在 _Layout.cshtml 文件设置全局css、js文件, 其中有两个标签 <environm[......]继续阅读

2019年12月15日 0条评论 3180点热度 0人点赞 痴者工良 阅读全文

The author's front-end files are as follows:   The author adds Bootstrap 4 and Font Awesome (icon fonts) because Bootstrap 4 no longer includes[......] 继续阅读

2019年12月15日 0条评论 3216点热度 0人点赞 痴者工良 阅读全文

ASP.NET Core 中,可以在静态目录添加文件,直接访问就可以下载。但是这种方法可能不安全,也不够灵活。 我们可以在 Controller 控制器中 添加 一个 Action,通过此Action,即可访问服务器的任何文件。 Action 格式     public FileResult D[......]继续阅读

2019年12月15日 0条评论 2780点热度 1人点赞 痴者工良 阅读全文

In ASP.NET Core, files can be added to a static directory for direct download. However, this method may not be secure or flexible enough. We can add a[......] 继续阅读

2019年12月15日 0条评论 68点热度 1人点赞 痴者工良 阅读全文

ASP.NET Core 程序启动过程如下 目录  Startup 类 Configure() 方法 中间件 使用中间件 Configure 方法 的参数 IApplicationBuilder Extension Methods(拓展方法)--微软提供的中间件 1, Startup[......] 继续阅读

2019年12月15日 2条评论 2876点热度 0人点赞 痴者工良 阅读全文

The startup process of ASP.NET Core applications is as follows Table of Contents  Startup Class Configure() Method Middleware Using Middleware [......] 继续阅读

2019年12月15日 2条评论 2910点热度 0人点赞 痴者工良 阅读全文

笔者没有学 ASP.NET,直接学 ASP.NET Core ,学完 ASP.NET Core MVC 基础后,开始学习 ASP.NET Core 的运行原理。发现应用程序有一个非常主要的 “传导体” HttpContext 。 赶忙写一下笔记先。 目录 &ldqu[......] 继续阅读

2019年12月15日 0条评论 3080点热度 0人点赞 痴者工良 阅读全文

The author did not study ASP.NET, but went directly to learn ASP.NET Core. After finishing the basics of ASP.NET Core MVC, I began to learn about the[......] 继续阅读

2019年12月15日 0条评论 3108点热度 0人点赞 痴者工良 阅读全文
17891011