Linqer is a SQL to LINQ conversion tool. It helps learning LINQ and convert existing SQL statements. Not every SQL statement can be converted to LINQ, but Linqer covers many different types of SQL expressions. Linqer supports both .NET languages – C# and Visual Basic. Because LINQ is a part of the C# and VB languages, it is sensitive to data type conversion. Linqer performs required type castings in the produced LINQ statements. It can convert the most usable SQL Server functions. The full list of supported MSSQL functions can…
Search Results for: visual studio
Microsoft Muse explained
Today, Microsoft announced a new generative AI model for games called Muse in Cambridge, UK. This new technology is explained here.
Testing Blazor components with bUnit
bUnit is a testing library for Blazor Components. Its goal is to make it easy to write comprehensive, stable unit tests
Query in Azure DevOps for work items
It is possible to write custom query in Azure DevOps for work items using the Work Item Query Language (WIQL) a language close to SQL language
Employers are desperate for data scientists
The demand for data science is growing fast and employers are desperate for data scientists. On top of that, the great resignations is on. What do you think about it? What is your experience?
SVG Icons and flags for Blazor
SVG Icons and flags for Blazor is a new library that contains tons of icons in SVG format and also all the world flags for each country
Dynamically add JavaScript from Blazor components
In this new post, I show you the code to dynamically add JavaScript from a Blazor components coming from the component itself or another URL
Markdown Editor component for Blazor
I have created a new Markdown Editor component flexible and rich of functionalities for Blazor WebAssembly and Blazor Server with .NET6.
DataTable component for Blazor
I have just released a new DataTable component for Blazor WebAssembly and Blazor Server. The NuGet package is available here. The source code will be available soon on GitHub. This component supports client/server side paging, filtering and sorting. DataTable in action Installation So, first install the package from NuGet or execute this command or Then, open your index.html or _Host.cshtml and add the CSS in the head of the page and then the script at the bottom of the page Then, add in your _Imports.razor file the following using: Also, in the…
Managing a .NET Service with Blazor
In this post I will show you how creating a cross-platform and managing a .NET Service with Blazor that can be installed on Windows and Linux
Create an accordion component with Blazor
In this post, I’m going to explain how to create an accordion component with Blazor WebAssembly or Blazor Server in a very simple way
Getting started with Swift development
Getting started with Swift development is a quick post to give you the basis to start creating apps with your Mac but also with Windows
Microsoft redesigns Office for Windows 11
Microsoft redesigns Office for Windows 11. Its Word, Excel, and PowerPoint apps with a new dark mode and a rounded aesthetic
The VIC20 reborn in the UK
The VIC20 reborn in the UK, 35 years after Commodore announced and launched the Commodore C64 for the masses
Azure DevOps releases AppServices
In this post, I’m going to explain how to create a pipeline and a release in Azure DevOps that releases into AppServices. This is quite important step to go forward a digital transformation in your company to improve and optimize the developer’s process. In the pipeline Azure DevOps builds the solution (projects and tests) and create an artifact. Then, with the release, it publishes the artifact into to a AppService in Azure. Now I show step by step how to create both. Pipeline First, you have to create a New…
Top 40 Agile Scrum Interview Questions
In this post, we want to answer the top 40 Agile Scrum Interview Questions and focus on the different areas for agile scrum interviews
Microsoft: we are finished with F# 5
Microsoft’s F# programming language alongside the latest .NET 5 preview: Microsoft announced : “we are finished with F# 5”
Using Git Flow with GitKraken and Azure DevOps
I want to explain how using Git Flow with GitKraken and Azure DevOps for improving collaboration, git concept learning curve and code quality
Transactions with Entity Framework Core
In the last couple of weeks, I was talking about Entity Framework Core for creating a model or call stored procedures. But how to use transactions?
Services
Whether your company needs a new website to engage with customers, an enterprise-class web app to automate processes, or a new cross-platform mobile application, our web developers have the programming expertise and the industry-specific experience to build it quickly, efficiently and in perfect alignment with your vision. As expert in software development, we are offering professional services for web applications and mobile apps with .NET technologies. Even with thousands of applications on the market, there are certain business situations that require a custom solution. Whether it’s a niche tool for…
GymConnections
With GymConnections every gym has its own community of people. So, people can virtually meet, chat, organize to see each other in the gym or follow a course together
Save and retrieve Secret from Azure KeyVault
How to retrieve #key, #secret, certificate from #Azure #KeyVault in C#? A step by step guide to configure your Azure account and start a new C# project
Integrate Xero with C# applications
How integrate Xero in your C# application? This is my guide step by step after spending more than one week to sort it out
Continuous: C# and F# IDE for the iPad by Frank A. Krueger
Continuous gives you the power of a traditional desktop .NET IDE – full C# 6 and F# 4 language support with semantic highlighting and code completion – while also featuring live code execution so you don’t have to wait around for code to compile and run. Continuous works completely offline so you get super fast compiles and your code is secure. Continuous gives you access to all of .NET’s standard library, F#’s core library, all of Xamarin’s iOS binding, and Xamarin.Forms. Access to all of these libraries means you won’t…
Dijkstra’s Algorithm in C# with Generics
I recently needed to to implement a shortest-path algorithm (to identify preferred domain controllers using site link costs) and I found Dijkstra’s Algorithm Path class using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DijkstraAlgorithm { public class Path<T> { public T Source { get; set; } public T Destination { get; set; } /// <summary> /// Cost of using this path from Source to Destination /// </summary> /// /// Lower costs are preferable to higher costs /// </remarks> public int Cost { get; set; } } }…