Loading ...

Net Core Tag Helpers

Hello everybody, today I want to describe some .Net core tag helpers that you can use in order to create your web pages. There are plenty of already implemented tag helpers that can simplify your life as a developer. Here is the list of already made: Anchor Cache Distributed Environment Form For...

How To Validate Input On Insert

Hello everybody, today I want to document small feature in Acumatica which I can call validation of insert.  As usually if you need to validate some logic of insertion you can use something like RowXXXXd event. But for simple validations you can use PXUIVerify attribute. Below goes example t...

Some Elastic Search Featues

Hello everybody, For few days I've got assigned to work with Elastic search. As faithful to my principles before doing any activity I'd like to familiarize myself with instrument that I had to use. In ordre to use it more effectively. So, first of all I want to mention terminology. As a lot of de...

Different Types Of Views

Hello everybody, today I want to write few words about different kinds of Views in .Net core. So, if you decide somehow to create new view you can see something like this: and now question. What is the difference between MVC View Page, MVC View Layout Page, MVC View Start Page and MVC View Impor...

Concurent Collections Of C

Hello everybody, today I want to write few words about Concurent collections in C#. First of all  I want to point there there are only four of them: ConcurrentDictionary ConcurrentQueue ConcurrentStack ConcurrentBag BlockingCollection Partitioner EnumerablePartitionerOptions IProducerConsum...