Dynamics 365

Search the Dynamics community

Filter blog posts

Card view List view
  • Relevance
  • Most recent
  • Most liked

Filter blog posts

LikeLike (8)
Acceptance Test Library - the introduction

The day is finally here. The Acceptance Test Library is made publicly available with 10.0.2.  So what is it?  It is nothing short of the best productivity feature you'll get this decade as an X++ engineer. More concretely it is a lib...

Michael Fruergaard ... 1,616
LikeLike (4)
Extensible X++ – Method signatures

Method signatures are not extensible – and will not be.   Extensible parameters would be intrusive – in so many ways: Breaks derived classes (signatures of overridden methods must match), Requires recompilation, No side...

Michael Fruergaard ... 1,616
LikeLike (4)
Concurrent delete operations in X++

X++ is designed for concurrent work loads - enabling multiple users performing their operations at the same time. Sometimes such operations are in conflict, and the system has to detect, recover and proceed. Data inconsistencies should not be allo...

Michael Fruergaard ... 1,616
LikeLike (4)
New capability in X++ : The In operator

We recently added a new feature in X++, making it easier to make certain SQL-where clauses extensible. Consider this method: It can now be refactored to support an extender in controlling which LedgerPostingTypes to include in the calculation: A...

Michael Fruergaard ... 1,616
LikeLike (3)
X++ access modifiers

The access modifiers in X++ are now much closer to C#'s access modifiers, and behave just the same. Who can access foo() when it is…? Please notice protected internal is the union of protected and internal. I.e. a protected internal m...

Michael Fruergaard ... 1,616
LikeLike (3)
Extensible X++: Chain of Command

As you can see on the Dynamics Roadmap a new capability is being introduced in X++; it enables strongly typed extension capabilities of public and protected methods; including access to public and protected members. Oh; I almost forgot: This is my...

Michael Fruergaard ... 1,616
LikeLike (1)
C# 7.0 – an X++ developer’s dream coming true?

Today I attended an excellent TechTalk on C# 7.0 by Mads Torgersen at a full house in Microsoft Development Center Copenhagen.   As the talk unfolded I was struck by Déjà vu– this is not the first time I've ...

Michael Fruergaard ... 1,616
LikeLike (1)
X++ in AX7: Internal keyword

internal is a new keyword in X++. It has the same semantics as in C#. When you mark a class or method as internal, then it can only be accessed from within the module where it is defined. internal class MyInternalClass { internal...

Michael Fruergaard ... 1,616
LikeLike (1)
Test qualities and basic guidelines for X++

With the availability of the Acceptance Test Library (ATL) let me share some guidelines for writing tests. As you embark on writing tests, these will help you steer the course and get most out of the investment.  We write unit tests to: Dete...

Michael Fruergaard ... 1,616