Tag - .NET

Best Practices For Code Review

This article provides a high-level overview of the code review process for C# code, as well as best practices for code review.Code review is an essential part of any developer's job. Code review is a technique that allows another developer (who is not necessarily on the same team or working...

React Native vs. Xamarin – Which one to choose?

Choosing one of the best Mobile App development frameworks is a difficult task for any company. And, if you want to create a robust and fulfilling Mobile product stack, technology is a major consideration. To begin, two prominent development frameworks to consider are Xamarin and React Native. Both are efficient...

.NET v7.0 Features Will Change the Way You Code

The.NET 7 framework has recently released some incredible new features that will change the way you code. They haven't been officially released yet, but you can start playing with them now to prepare for when they do in November!The latest.NET Framework preview has been made available to the public, and...

Outsourcing .NET Software Development

We offer a blended approach of competency levels as a .NET software development company to help you control costs by applying the right expertise to the project at hand. We assist you in assembling an ideal team of .NET developers to supplement your staff on an ongoing basis or to...

Things You Should Know About .NET 5

According to a Microsoft official blog post,.NET 5.0 is the next big thing and the successor to the.NET Core 3.1 release. Microsoft announced in the second week of November 2020 that.NET 5 contains new enhancements, upgrades, and features over.NET Core 3.1. Check out our prior blog pieces if you're unfamiliar...

We’re Hiring – Senior .NET Developer

JOB DESCRIPTION:Responsible for development, support, maintenance and implementation of a complex project module. You should have good experience in application of standard software development principles. Be able to work as an independent team member, capable of applying judgment to plan and execute your tasks. Be able to respond to technical...

Reasons to hire .NET developers from an outsource development company

We can no longer ignore the significance of having an internet presence. You can grow a brand, attract more customers, gain reputation, and generate long-term customer relationships by having a strong online presence. In current digital age, having an online presence implies having a website that contains all of the...

Subdomain Mapping in ASP.NET Boilerplate

In AbpTenants table in the database. You can add your custom properties to Tenant class.AbpTenant class defines some basic properties, the most important properties are:TenancyName: This is a unique name of a tenant in the application. It should not be changed normally. It can be used to allocate subdomains to tenants like...

Using EPPlus library to manage excel spreadsheets in .NET

EPPlus is a library to manage excel spreadsheets, using OOXML. To install EPPlus, you can search for EPPlus in "NuGet Package Manager" or simply run the following command in the "Package Manager Console":PM> Install-Package EPPlusAfter installing we are going to need to use this namespace:using OfficeOpenXml;I got an exception while...