Skip to content
Top Menu
September 14, 2026
  • Privacy
  • Cookies
  • Write for us
  • Advertising
  • Donate
  • Partners
  • Twitter
  • YouTube
  • Google+
  • Google+
  • Facebook
  • LinkedIn
  • Medium
  • Tumblr
  • Instagram
  • Pinterest
  • Flickr
Ryadel

Ryadel

Web Development, Networking, Security, SEO

  • About us
    • Projects & Works
      • Show All
      • AkkiApp
      • CORSflare
      • dir2json
      • DownPicker
      • jquery.scrolling
      • Know
      • MergeTIFF
      • P7M Convert
      • P7M Studio
      • Publicize With Hashtags
      • RegEx Splitter
      • REPflare
      • Source Control Switcher
      • Tabulazer
      • VotinApp
    • Services
      • Remote Assistance
      • Software Development
      • Training Courses
      • Your IP Address
    • Contacts and Quotes
    • Advertising Info
  • Coding
    • AI & Machine Learning
    • Android Studio
    • ASP.NET
    • C#
    • HTML & CSS
    • JavaScript
    • PHP
    • SQL
    • Xcode & iOS
  • Operating Systems
    • Windows
    • Linux
    • macOS
    • Android
    • iOS
  • Hardware
    • CPU & GPU
    • Mobile Devices
    • Network Devices
    • Printers and Scanners
  • Software
    • Applications
    • Tools & Utilities
  • Web
    • SEO & Marketing
    • Servers & Networks
    • Cyber Security
    • Privacy & GDPR
    • Social Networks
    • Cloud
  • Italiano

Author: Ryan

ASP.NET / C#

System.Linq.Dynamic.Core - Case insensitive Contains() How to use the Contains() method in a case-insensitive way using Entity Framework Core and System.Linq.Dynamic.Core

October 28, 2020October 28, 2020 - by Ryan - Leave a Comment

A few days ago we published a small post explaining how to perform a case insensitive Contains query using Entity Framework Core, since the Contains() method changed its behaviour from …

System.Linq.Dynamic.Core - Case insensitive Contains() How to use the Contains() method in a case-insensitive way using Entity Framework Core and System.Linq.Dynamic.Core Read More
ASP.NET / C# / Coding

ASP.NET Core Server.MapPath equivalent How to access the absolute path to the application content files in ASP.NET Core Application just like we did with Server.MapPath using IWebHostEnvironment

October 19, 2020April 17, 2021 - by Ryan - 6 Comments.

If you've stumbled upon this post there's a high chance that you're a seasoned ASP or ASP.NET Web Developer who is trying to find an alternative to the good old …

ASP.NET Core Server.MapPath equivalent How to access the absolute path to the application content files in ASP.NET Core Application just like we did with Server.MapPath using IWebHostEnvironment Read More
ASP.NET / C# / Coding / Web

ASP.NET Core C# - Send email messages with SendGrid API How to send transactional e-mail messages from a ASP.NET Core C# web application using Twilio SendGrid API

October 18, 2020April 17, 2021 - by Ryan - Leave a Comment

A few days ago we've published a guide explaining how to send email messages via SMTP with MailKit implementing a custom MailKitEmailSender class based upon the ASP.NET Core built-in IEmailSender …

ASP.NET Core C# - Send email messages with SendGrid API How to send transactional e-mail messages from a ASP.NET Core C# web application using Twilio SendGrid API Read More
Coding

Entity Framework Core: case-insensitive Contains() In Entity Framework, the Contains() method used to be case-insensitive: however, such behavior has been changed in EF Core. Here's how to revert it back and perform case-insensitive searches

October 15, 2020April 17, 2021 - by Ryan - Leave a Comment

Today I was working with EF Core and I was implementing some IQueryable filters using this guide. When I was performing my unit tests to see if I did everything properly …

Entity Framework Core: case-insensitive Contains() In Entity Framework, the Contains() method used to be case-insensitive: however, such behavior has been changed in EF Core. Here's how to revert it back and perform case-insensitive searches Read More
ASP.NET / C# / Coding / SQL / Web

ASP.NET Core SQL Server and MySQL database logging with Serilog How to use the ASP.NET Core's built-in ILogger logging API to write application logs to SQL Server, MySQL and/or MariaDB using Serilog logging provider

October 15, 2020April 17, 2021 - by Ryan - Leave a Comment

In this article we'll see how to take advantage of Serilog, a neat open-source diagnostic logging library for .NET applications, to log our ASP.NET Core web application’s data to a …

ASP.NET Core SQL Server and MySQL database logging with Serilog How to use the ASP.NET Core's built-in ILogger logging API to write application logs to SQL Server, MySQL and/or MariaDB using Serilog logging provider Read More
Coding / JavaScript / Linux / Servers & Services / Software / Tools & Utilities / Windows

Electron: build a Linux package from Windows using electron-builder and Docker How to build an Electron App in a distributable format for Linux (AppImage, deb, rpm, snap and more) from a Windows machine using electron-builder and Docker

October 5, 2020October 5, 2020 - by Ryan - Leave a Comment

If you've stumbled upon this post it most likely means that you're struggling for a way to build your Electron app in a Linux distributable format such as the following: …

Electron: build a Linux package from Windows using electron-builder and Docker How to build an Electron App in a distributable format for Linux (AppImage, deb, rpm, snap and more) from a Windows machine using electron-builder and Docker Read More
ASP.NET / C# / Coding / Cyber Security / Tools & Utilities

How to securely store passwords in Visual Studio 2019 with Manage User Secrets Securely manage Database credentials, API Keys and other user secrets using ASP.NET Core Secret Manager and Visual Studio Manage User Secrets features

October 3, 2020December 20, 2022 - by Ryan - Leave a Comment

Being able to securely store database password and API keys in web applications while maintaining full efficiency in terms of debug and testing has always been a challenge for all …

How to securely store passwords in Visual Studio 2019 with Manage User Secrets Securely manage Database credentials, API Keys and other user secrets using ASP.NET Core Secret Manager and Visual Studio Manage User Secrets features Read More
ASP.NET / C# / Coding

How to check if a number is a multiple of another in ASP.NET C# A minimalistic extension method written in C Sharp that can be used to determine if an integer is a multiple (or a dividend) of another integer

September 30, 2020January 7, 2021 - by Ryan - Leave a Comment

Today I needed to find a quick way to programmatically determine if a given integer number (Int32) was a multiple of another integer number: as a matter of fact I …

How to check if a number is a multiple of another in ASP.NET C# A minimalistic extension method written in C Sharp that can be used to determine if an integer is a multiple (or a dividend) of another integer Read More
ASP.NET / C# / Coding / Web

JsonSerializationException: Self referencing loop detected error - How to fix How to fix the "JsonSerializationException: Self referencing loop detected with type" error that can occur when trying to JSON serialize a Entity Framework result with ASP.NET Core

September 30, 2020January 7, 2021 - by Ryan - Leave a Comment

If you've stumbled upon this post it most likely means that you're experiencing the following error while trying to serialize an Entity Framework (or EF Core) IQueryable result into a …

JsonSerializationException: Self referencing loop detected error - How to fix How to fix the "JsonSerializationException: Self referencing loop detected with type" error that can occur when trying to JSON serialize a Entity Framework result with ASP.NET Core Read More
ASP.NET / C# / Coding / JavaScript / Web

Use Newtonsoft's Json.NET instead of System.Text.Json in ASP.NET Core 3+ MVC projects How to replace the ASP.NET Core's native System.Text.Json APIs with the Newtonsoft.Json package library, also known as Json.NET

September 30, 2020January 7, 2021 - by Ryan - 1 Comment

If you're a ASP.NET developer and you've got some programming experience with ASP.NET Core 3+, you most likely already know that the ASP.NET Core development team introduced a brand new …

Use Newtonsoft's Json.NET instead of System.Text.Json in ASP.NET Core 3+ MVC projects How to replace the ASP.NET Core's native System.Text.Json APIs with the Newtonsoft.Json package library, also known as Json.NET Read More

Posts pagination

Previous 1 … 15 16 17 … 64 Next
Learn how to build next-gen Web Apps and Microservices with a Full-Stack approach using the most advanced front-end and back-end frameworks available today!
Create fully featured APIs with the ASP.NET Core framework! This practical guide shows you how to design and implement APIs using the REST and GraphQL standards. Available today for Early Access purchase with a 50% discount using the au35san promo code, valid for all Manning catalog!
Get it on manning.com or amazon.com
My Tweets

Categories

  • Business processes (118)
    • Agile (7)
    • Business innovation (66)
    • Cryptocurrencies (2)
    • Customer Services (11)
    • DevOps (17)
    • Internet of Things (6)
    • Jobs & Careers (28)
    • Process management (28)
  • Coding (533)
    • AI & Machine Learning (27)
    • Android Studio (6)
    • ASP.NET (202)
    • C# (199)
    • HTML & CSS (39)
    • JavaScript (73)
    • PHP (68)
    • SQL (45)
    • Xcode & iOS (10)
  • Design (113)
    • Graphics (42)
    • Photo & Video Editing (31)
    • UI, UX & Layout (37)
  • Hardware (70)
    • CPU & GPU (4)
    • Gaming consoles (1)
    • Mobile Devices (30)
    • Network Devices (7)
    • Printers and Scanners (1)
    • RAM, HDD & SSD (5)
  • Operating Systems (314)
    • Android (33)
    • iOS (30)
    • Linux (57)
    • macOS (36)
    • Windows (198)
  • Other stuff (13)
  • Software (340)
    • Applications (116)
    • Tools & Utilities (250)
    • Videogames (8)
  • Web (674)
    • Cloud (66)
    • Cyber Security (212)
      • Data Security (50)
    • Privacy & Compliance (70)
    • SEO & Marketing (105)
    • Servers & Services (306)
    • Social Networks (15)
    • Spam and Scam Alert (11)

Archives

Tag Cloud

.NET .NET Core AI Android Angular Antivirus ASP.NET ASP.NET Core ASP.NET MVC Backup C# CentOS EF Core Entity Framework GDPR GitHub Google HTTP HTTPS IIS iOS Javascript Linux Mac macOS Malware Marketing Microsoft MySQL Nginx PHP PowerShell Privacy Ransomware Security SEO SQL Server SSL TLS Visual Studio VPN Windows Windows 10 Windows Server WordPress

Feed

  • RSS
  • Atom
  • Comments RSS
HTML5 Powered with Connectivity / Realtime, CSS3 / Styling, Multimedia, Performance & Integration, and Semantics

Categories

  • Agile (7)
  • AI & Machine Learning (27)
  • Android (33)
  • Android Studio (6)
  • Applications (116)
  • ASP.NET (202)
  • Business innovation (66)
  • Business processes (85)
  • C# (199)
  • Cloud (66)
  • Coding (491)
  • CPU & GPU (4)
  • Cryptocurrencies (2)
  • Customer Services (11)
  • Cyber Security (200)
  • Data Security (50)
  • Design (88)
  • DevOps (17)
  • Gaming consoles (1)
  • Graphics (42)
  • Hardware (49)
  • HTML & CSS (39)
  • Internet of Things (6)
  • iOS (30)
  • JavaScript (73)
  • Jobs & Careers (28)
  • Linux (57)
  • macOS (36)
  • Mobile Devices (30)
  • Network Devices (7)
  • Operating Systems (189)
  • Other stuff (13)
  • Photo & Video Editing (31)
  • PHP (68)
  • Printers and Scanners (1)
  • Privacy & Compliance (70)
  • Process management (28)
  • RAM, HDD & SSD (5)
  • SEO & Marketing (105)
  • Servers & Services (306)
  • Social Networks (15)
  • Software (213)
  • Spam and Scam Alert (11)
  • SQL (45)
  • Tools & Utilities (250)
  • UI, UX & Layout (37)
  • Videogames (8)
  • Web (507)
  • Windows (198)
  • Xcode & iOS (10)

Recent Posts

  • How to Convert OST to PST with Stellar Converter for OST
  • MEM: Persistent Operating Memory for AI Agents
  • Extraction shooters and late capitalism: a genre that mirrors our age
  • Harpyx: Open-Source Platform for RAG-Based Document Intelligence
  • Advanced configuration strategies for ASP.NET Core projects
  • What to Consider Before Outsourcing Software Quality Assurance
  • UncannyPrompt: Open-Source AI Prompt Management for Teams
  • ASP.NET Core Observability: OpenTelemetry, Serilog, Metrics and Health Checks
  • Stop Double Typing: A Global AutoHotkey Debounce Fix for “Chattering” Keyboards
  • Tabulazer Chrome Extension for HTML Tables gets a Major Update
  • ClawTalk: A Talk-to-Your-Assistant Chrome Extension for OpenClaw
  • World Models vs Video Games: why AI will not kill gaming
  • Best AI Chatbot solutions for small business: 2026 comparison
  • ASP.NET Core Background Jobs with RabbitMQ: Reliable Patterns for HTTP Offloading

Recent Comments

  • Paul L. on Windows 11 Installer Stuck at 46% - How to Fix It
  • Paul L. on Windows 11 Installer Stuck at 46% - How to Fix It
  • chebabha ABD on Visual Studio 2019, 2017, 2015, 2013, 2012 & more - Download ISO (Offline Installer)
  • Geir on Stop Double Typing: A Global AutoHotkey Debounce Fix for “Chattering” Keyboards
  • Leticia Gabriel on AudFree Spotify Music Converter and DRM Audio Converter - Review
  • Anna Lepos on Enable NTFS or Win32 long paths policy to remove the 255-260 characters limit in Windows 10
  • Jurgen Vanmassenhove on Visual Studio - parameter instance with value null (and other design errors) when opening XSD files
  • Alan on Here's why you should NOT buy a Sabrent Rocket SSD
  • Rashmi Rathore on Performance Improvements in ASP.NET Core 9
  • asdf on Boss GX-100 Firmware Update Guide
  • Tim on Unable to launch the IIS Express Web server error on Visual Studio 2015 - How to fix it
  • Alan Shelby on Stellar Repair for Photo - Review and Test Drive
VAT ID: IT 13232371008 - REA: RM-1431325
Theme and Layout by Ryadel & Hanahaki
Manage Consent
To provide the best experiences, we use technologies like cookies to store and/or access device information. Consenting to these technologies will allow us to process data such as browsing behavior or unique IDs on this site. Not consenting or withdrawing consent, may adversely affect certain features and functions.
Functional Always active
The technical storage or access is strictly necessary for the legitimate purpose of enabling the use of a specific service explicitly requested by the subscriber or user, or for the sole purpose of carrying out the transmission of a communication over an electronic communications network.
Preferences
The technical storage or access is necessary for the legitimate purpose of storing preferences that are not requested by the subscriber or user.
Statistics
The technical storage or access that is used exclusively for statistical purposes. The technical storage or access that is used exclusively for anonymous statistical purposes. Without a subpoena, voluntary compliance on the part of your Internet Service Provider, or additional records from a third party, information stored or retrieved for this purpose alone cannot usually be used to identify you.
Marketing
The technical storage or access is required to create user profiles to send advertising, or to track the user on a website or across several websites for similar marketing purposes.
  • Manage options
  • Manage services
  • Manage {vendor_count} vendors
  • Read more about these purposes
View preferences
  • {title}
  • {title}
  • {title}