Power Apps Search Series – Autocomplete API for Predictive Search Experiences

In Tthe previous post, we covered the Suggest API, ideal for intelligent type-ahead experiences. In this post, we explore another UX enhancement tool the Autocomplete API, which is used to complete partially typed search terms based on indexed data in Dataverse. What Is the Autocomplete API? The Autocomplete API is designed to return the most … Continue reading Power Apps Search Series – Autocomplete API for Predictive Search Experiences

Power Apps Search Series – Suggest API for Intelligent Search Assistance

In the previous post we explored the full power of the Search Query API in Dataverse. Now, let’s shift gears to a more UX-focused capability: the Suggest API. This feature powers intelligent, type-ahead search experiences that offer suggestions before a full search is even submitted ideal for lookup fields, search bars, and filtering experiences in … Continue reading Power Apps Search Series – Suggest API for Intelligent Search Assistance

Integrate Dataverse and Azure Event Hubs Seamlessly

In Part 1 and Part 2, we explored foundational Azure integration with Dataverse and different ways to interact with Dataverse data within Azure. Now in Part 3, we dive into the event streaming side of integration specifically using Azure Event Hubs to stream Dataverse data in near real-time. This is ideal for scenarios where you … Continue reading Integrate Dataverse and Azure Event Hubs Seamlessly

Working with Dataverse Data in Azure – Practical Patterns & Considerations

In Part 1, we explored the why and how of Azure integration with Dataverse using Service Bus and Azure-aware plug-ins. Now in Part 2, we zoom into the real-world mechanics of working with Dataverse data inside Azure solutions. Whether you're building APIs, serverless workflows, or batch processes this post is your launchpad. Why Move Data … Continue reading Working with Dataverse Data in Azure – Practical Patterns & Considerations

Extending the Power Apps Timeline: Displaying Attendance Records with a Custom Connector

Introduction: The Problem with the Default Timeline The Timeline control in model-driven apps is one of the most useful UI components for displaying activities, notes, and related records. But until recently, the scope was somewhat rigid you could only surface system-defined entities such as emails, appointments, and custom activities. What if you wanted to bring … Continue reading Extending the Power Apps Timeline: Displaying Attendance Records with a Custom Connector

Mastering Alternate Keys in Dataverse: The Key to Seamless Integration, Upserts, and Sync

In the world of Dataverse and Power Platform development, GUIDs (record IDs) are often the go-to for identifying records. But in integration-heavy scenarios where external systems don’t (and shouldn’t) know about Dataverse-specific GUIDs there’s a smarter, more maintainable way to reference and sync data: Alternate Keys. In this deep dive, we’ll explore: What are alternate … Continue reading Mastering Alternate Keys in Dataverse: The Key to Seamless Integration, Upserts, and Sync

Prepopulate Model-Driven Forms Using Custom Query String Parameters in Power Apps

One of the most underused tricks in model-driven app development is the ability to pass data directly into a form via query string parameters and use that data to prepopulate fields when the form loads. Whether you're embedding forms in external portals, triggering them from other apps, or launching forms via buttons or Power Automate … Continue reading Prepopulate Model-Driven Forms Using Custom Query String Parameters in Power Apps

Scalable Customization Design in Microsoft Dataverse: Understanding Blocking and How to Prevent It

🚧 What is Blocking in Dataverse? Blocking occurs when one transaction holds a database resource lock, preventing other transactions from accessing it until the first transaction is completed. This can lead to delays, performance bottlenecks, and even transaction failures. Imagine a checkout counter at a grocery store where a cashier is scanning a long list … Continue reading Scalable Customization Design in Microsoft Dataverse: Understanding Blocking and How to Prevent It

Scalable Customization Design in Dataverse : Transaction and Locking Awareness

Understanding How Transactions Work in Dataverse When building custom solutions in Microsoft Dataverse, one of the most overlooked yet critical aspects is how transactions and locking work. Just like a checkout counter at a grocery store, once a transaction starts, the system locks resources (records, tables, indexes) to ensure consistency. If another customer (process) tries … Continue reading Scalable Customization Design in Dataverse : Transaction and Locking Awareness

Plugin Solution Architecture in Dynamics 365: DLL-Based vs Plugin Package-Based Approaches

As the Dynamics 365 and Power Platform landscape evolves rapidly, so does the way we extend the platform using custom code. One significant shift is the movement from traditional DLL-based plugin deployment to the more modern Plugin Package approach. In this post, we’ll dive deep into the architecture differences, evaluate the pros and cons of … Continue reading Plugin Solution Architecture in Dynamics 365: DLL-Based vs Plugin Package-Based Approaches