July 28, 2017

    Microsoft Dynamics 365 Technical Series: Using .Net Data Table

    How to use .NET DataTable in Microsoft Dynamics 365 and Why

    Have you ever found yourself in a situation whereby you were working with Dynamics 365 and you were mesmerized by the built-in SQL syntax that can be accessed right from the get-go, and yet, deep inside you were missing your favorite .NET collections, LINQ syntax, and other good stuff that simplifies your life? Yeah, me too. Don’t get me wrong, it is quite a rare occasion when available X++ options are not enough. Even in the worst-case scenario you might solve your problem by creating a complex “query-view” structure, or you can create a class hierarchy built around containers, lists or maps. But what if you need to have a flexible data structure, and yet be able to sort or filter it down. Sure, it is achievable with a container, but they are slow and limited by available RAM, plus you will spend a lot of time writing methods required to work with data. The same can be said about X++ lists and maps. And while being fast and easy to use, queries and views built around them might not be flexible enough, and usually are designed to cover some particular scenario.

    If you’ve ever found yourself in this situation, you should probably reconsider your approach. But what if we could use DataTable and other related objects from .NET? We are not bound by the old complex X++ to CIL compilation process after all. In this article, I am going to show you how it can be achieved and what can be done.  

    First, you need to reference System.Data library in your class:

    SCR01.png

    Second, instantiate your instances and initialize DataColumn objects of a specific type

    SCR02.png

    SCR03.png

    After your table structure has been finshed, it can be populated with data. This is a tricky part. Usually, when talking about C# we would be able to use this kind of syntax to populate the data in DataTable.Rows:

    SCR04.png

    However, in X++ it is not possible to access DataRow field by index, so we are going to use System.Object array instance and DataRow.Add() method (make sure that the data types inside your array correlate with the types of columns inside DataTable):

    SCR05.png

    Now, your DataTable instance is ready and can be used to do some cool stuff. And although there is no way to use LINQ syntax alongside X++ (or I just haven’t discovered it yet), you can easily access the data, order it iterate through or even add new columns if needed.

    To access the data inside DataTable, you will need two new instances of System.Collections.IEnumerator:

    SCR06.png

    If needed, you can use pretty much any method of DataTable or DataView, like:

    SCR07.png

    To sum up, I will reitorate, I am not suggesting using DataTables instead of AX tables or collections. I just want to show you that, in Dynamics 365 for Operations, usage of .NET structures, right from X++ code is far less complex compared to AX2012. I do believe that some tasks, that require iterative approach, might be accomplished with a use of external C# code, or libraries.

    About the Author - Fedir Kryvyi

    Fedir Headshot-224308-edited.jpg 4 years of experience as a Senior Software Development Engineer at ENAVATE.

     

     

     

     

     

    Enavate Recent Posts

    November 20, 2025

    How AI Can Help Professional Services Firms Elevate Human Expertise

    Key Takeaways AI empowers humans to focus on high-value work, not replace them. Professional services firms of all sizes can leverage AI to streamline processes and boost... Read More
    November 18, 2025

    Is Microsoft Dynamics GP on Life Support? How to Plan Your Next Move

    For nearly three decades, Microsoft Dynamics GP (formerly Great Plains) has quietly powered accounting and operations for thousands of organizations. It’s been a trusted... Read More
    November 13, 2025

    Steps to Strengthen and Streamline Dynamics GP Before 2029

    Microsoft Dynamics GP has been one of the leading ERP platforms for decades, powering businesses of all sizes and industries. However, like every technology, its lifespan is... Read More

    Subscribe to Receive Email Updates