网站实时动态码友网--专注C#&.NET/.NET Core的中文技术网站

最近20条动态(数据无延迟、实时推送)

  • 匿名 浏览资讯(220.181.108.***)

    微软力赞Windows Defender:第三方杀毒软件已无用

    现在大家是否还安装第三方杀毒安全软件?估计很多人都不会了吧,尤其是Windows自带的Windows Defender越来越纯熟,对于绝大多数普通用户来说都已经绰绰有余。在最新一篇博文中,微软又引用权威安全软件评测机构AV-TEST 2018年1-2月的测试结果,证明了Windows Defender的优秀。

  • 匿名 浏览资讯(123.5.15.***)

    积极拥抱.NET Core开源社区

    积极拥抱.NET Core开源社区潘正磊在上海的Tech Summit 2018 大会上给我们的.NET Core以及开源情况带来了最新信息。.Net Core 开源后取得了更加快速的发展,目前越活跃用户高达400万人,每月新增开发者45万,在 GitHub 上的月度增长达到15%。目前有来自超过3,700家企业的1.9万开发者在为 .NET Core 做贡献,.NET 基金会管理着超过60个...

  • 匿名 浏览资讯(122.238.18.***)

    .NET Core August 2018 Update

    Today, we are releasing the .NET Core August 2018 Update. This update includes .NET Core 2.1.3 and .NET Core SDK 2.1.401.Getting the UpdateThe latest .NET Core updates are available on the .NET Core...

  • 匿名 浏览资讯(176.9.18.***)

    .NET进阶篇01-Generic泛型深入

    泛型我们一定都用过,最常见的List集合。.NET2.0开始支持泛型,创建的目的就是为了不同类型创建相同的方法或类,也包括接口,委托的泛型。比如常见的ORM映射,一个方法通过传入不同的类,返回不同的类实例,再调用时才确定参数类型。

  • 匿名 浏览文章(207.32.135.***)

    Mysql查询后按匹配度(相关度)分页排序

    对于小项目的简单实现方式:SELECT * FROM cpstore WHERE Domain LIKE '%fir%' ORDER BY REPLACE(Domain,'fir','')以此记录,以备日后查询

  • 匿名 浏览文章(163.0.35.**)

    MySQL使用SQL语句根据某个字段删除表中的重复数据记录(保留一条记录)的可用方法

    由于项目MySQL数据库中某个表的数据记录存在重复记录,需要根据某个字段删除其冗余的记录。网上虽然有很多关于解决此问题的方案,但大部分都是不经过测试和分析就一个劲的转,你转他的,他转你的误导大家。今天正好我也需要这样一条SQL语句来删除重复数据,在此也一并分享出来,亲测可用。具体MySQL语句如下:...

  • 匿名 浏览资讯(35.240.54.***)

    What's new in Windows Forms runtime in .NET 5.0

    Since Windows Forms was open sourced in late 2018, and ported to .NET Core, both the team and our external contributors have been busy fixing old bugs and adding new features. In this post we are going to talk about what’s new in Windows Forms runtime in .NET 5.0.

  • 匿名 浏览资讯(35.240.54.***)

    Asp.Net中的Action和Func委托

    最近在阅读某开源框架源码的时候,发现作者在其中运用了很多Action委托和Func委托,虽然我之前在项目中也有一些对委托的实操,但还是免不了长时间的不用,当初消化的一些委托基础都遗忘了。。。索性,趁热打铁,借助这次分享的机会,也帮自己重新巩固下.Net中关于委托的一些基础用法。

  • 匿名 浏览资讯(35.240.54.***)

    How to Utilize gRPC-Web From a Blazor WebAssembly Application

    Its no secret by now that there has been a lot of excitement about gRPC recently in the .Net community. gRPC is a modern high-performance RPC (Remote Procedure Call) framework. It is based on HTTP/2, Protocol Buffers and other modern standard-based technologies. It is also an open standard and is supported by many programming languages, including .NET.

  • 匿名 浏览资讯(35.240.54.***)

    微软公布 Windows Terminal 2.0 路线图

    在去年的微软 Build 2019 大会上,微软首次宣布开源 Windows Terminal。上个月,Build 2020 终于宣告 Windows Terminal 1.0 版本的正式到来。近日,Windows Terminal 2.0 的路线图也公布了。

  • 匿名 浏览资讯(35.240.54.***)

    Is Asynchronous The Best Way To Go in ASP.NET Core?

    Anyone who has programmed in C# has probably come across keywords such as async or await. And, you may have also come across the Task class. These help you program your C# application. But is there any real benefits using asynchronous in a ASP.NET Core app?

  • 匿名 浏览资讯(35.240.54.***)

    Working with PDFs in ASP.NET

    In this post, I want to introduce you to how we can work with PDFs in ASP.NET using the PSPDFKit .NET Library. The post will be focusing on a simple PDF form reading and writing mechanism in a web application, but there are many other features we could expose — for example, document editing, redaction, annotation manipulation, and more.

  • 匿名 浏览资讯(35.240.54.***)

    Securing an ASP.NET Core Razor Pages app with OAuth

    Previously, we used .NET Core to build a command line tool to add users to a FusionAuth user identity management system. In this tutorial, we’ll build out a web application with a protected page. We’ll use Razor Pages and have both login and logout happen against FusionAuth, using the Authorization Code grant.

  • 匿名 浏览资讯(35.240.54.***)

    Query Tags in EF Core for ASP .NET Core 3.1 Web Apps

    This is the seventeenth of a new series of posts on ASP .NET Core 3.1 for 2020. In this series, we’ll cover 26 topics over a span of 26 weeks from January through June 2020, titled ASP .NET Core A-Z! To differentiate from the 2019 series, the 2020 series will mostly focus on a growing single codebase (NetLearner!) instead of new unrelated code snippets week.

  • 匿名 浏览资讯(35.240.54.***)

    Content Injection with Response Rewriting in ASP.NET Core 3.x

    In building my Westwind.AspNetCore.LiveReload middleware component a while back, one issue that came up was how to handle Response rewriting in ASP.NET Core. This middleware provides optional live reload functionality to ASP.NET Core projects letting you reload the active page as soon as any monitored file is changed. Rather than an external tool it provides this functionality as middleware that can be plugged in and turned on/off via configuration.

  • 匿名 浏览资讯(35.240.54.***)

    Using Named Handler Methods to Make jQuery AJAX GET Calls in Razor Pages

    Let's see how to wire up a jQuery AJAX request to a Named Handler Method in ASP.NET Core Razor Pages!

  • 匿名 浏览资讯(35.240.54.***)

    Suppressing Events in Blazor and ASP.NET Core Version 3.1

    ASP.NET Core Version 3.1 came out in December of 2019 and added some new features for managing events in Blazor. I'll be the first to admit that you might lead a long and happy life without using these features…but you never know. In fact, I'll claim at the end of this column that there's at least one scenario when you'll need this information.

  • 匿名 浏览资讯(35.240.54.***)

    Redis 6 RC1 发布:SSL、ACL、RESP3、客户端缓存与集群代理等

    Redis 6 RC1 发布了,项目创建人 antirez 在博客中介绍,这是迄今最“企业”化的版本(SSL 与 ACL 等特性与企业极相关),也是最大的版本,同时也是参与人数最多的版本。 GA 版本预计在明年三...

  • 匿名 浏览资讯(35.240.54.***)

    Assertion messages in tests

    I received an interesting question from a fellow reader that I’d like to elaborate on:I have a question about Assert messages - should I use the overload that contains the message parameter and use it to pass a string describing why the Assert failed?The answer to this question comes down to two...

  • 匿名 浏览资讯(111.199.74.***)

    .NET Core November 2019 Updates - 2.1.14, 2.2.8, and 3.0.1

    Today, we are releasing the .NET Core November 2019 Update. These updates only contain non-security fixes. See the individual release notes for details on updated packages.