Posts

Deployment Types in AI Foundry

Deploying a model in Azure AI Foundry can be done in 9 different ways.  Depending on the type of deployment chosen, it may impact one of more factors, such as cost, latency, efficiency for processing large datasets, compliance.  Listed below is a description of each deployment type, along with advantages and disadvantages.  For more details, please visit https://learn.microsoft.com/en-us/azure/ai-foundry/foundry-models/concepts/deployment-types Deployment Type Description Advantage Disadvantage Global Standard Shared global infrastructure for general-purpose model inference. Cost-effective and easy to scale. Performance may vary under high demand. Global Provisioned Dedicated global infrastructure for consistent performance. Reliable throughput and latency. Higher cost due to dedicated resources. Global Batch Asynchronous globa...

Nov '25 Regional Tech Events

User Groups Nov 4: Capital Area .NET Users Group Nov 12: Azure Cleveland Nov 13: Akron AITP Nov 19: Cleveland C# User Group Nov 20: GLUG.NET   Conferences Nov 11-13: .NET Conf 2025  

Converting .NET Application from Oracle to SQL Server

The SQL Server equivalent of Oracle.ManagedDataAccess.Client is either System.Data.SqlClient or Microsoft.Data.SqlClient System.Data.SqlClient is the older built-in provider. Microsoft.Data.SqlClient is the newer, actively maintained version with better support for .NET Core and .NET 5+.   Feature Oracle.ManagedDataAccess.Client System.Data.SqlClient / Microsoft.Data.SqlClient Database Oracle SQL Server Namespace Oracle.ManagedDataAccess.Client System.Data.SqlClient  or Microsoft.Data.SqlClient Connection class OracleConnection SqlConnection Command class OracleCommand SqlCommand Data reader class OracleDataReader SqlDataReader NuGet package Oracle.ManagedDataAccess System.Data.SqlClient  (legacy) or Microsoft.Data.SqlClient  (modern)   ...

How can I remove GitHub bindings from a Visual Studio 2022 Solution

To remove Git from a solution in Visual Studio 2022, effectively unbinding it from source control, follow these steps: Ensure the solution is NOT open in the Visual Studio IDE. Navigate to the root directory of your solution using File Explorer. If you cannot see the .git folder, you need to enable the display of hidden files and folders in File Explorer. In Windows, open File Explorer, go to the "View" tab, and check "Hidden items." Delete the .git folder within your solution's root directory. This folder contains all the Git repository information, including history, branches, and tags for the solution and all projects within it. Visual Studio should now recognize that the Git repository is no longer present and will no longer manage it with Git source control.

Oct '25 Regional Tech Events

User Groups Oct 7: Ohio North Database Training Oct 8: Azure Cleveland Oct 16: Akron AITP Oct 16: GLUG.NET Oct 22: Cleveland C# User Group   Conferences Oct 18: SQL Saturday PGH  

.NET MAUI with Blazor vs. XAML

Image
  What's better for mobile development with .NET Maui, Blazor or XAML? Each has its pros and cons.  Listed below is a brief comparison of the 2 options: Maui with Blazor : Web Tech, Shared Logic Best for: Web developers or teams already using Blazor for web apps who want to reuse components and logic. Pros: - Write UI in Razor syntax (HTML + C#) - Share components across web and mobile - Easier onboarding for web devs - Great for internal tools or hybrid apps Cons: - Slight performance overhead compared to native XAML - Limited access to some native features (though improving) - Smaller ecosystem for mobile-specific Blazor components Maui with XAML : Native Feel, Rich Control Best for: Developers with WPF, UWP, or Xamarin.Forms experience, or those wanting full control over native UI. Pros: - Deep integration with MAUI’s native controls - Rich styling and layout capabilities - More mature tooling and community support for mobile-specific features - Better performance for compl...

Aug '25 Regional Tech Events

User Groups Aug 5: Ohio North Database Training Aug 7: Azure Cleveland Aug 21: GLUG.NET Aug 27: Cleveland C# User Group   Conferences Aug 1: Cincy Deliver Aug 13-15: Kansas City Developer Conference