Skip to content

Ashurek85/Formulation

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Formula generation and execution in C#

It makes possible create formulas and execute them. The code contains formula engine and test cases.

Example: Name of the subordinate with the highest number of vacations:

new DataNavigation<StringType>(nameof(TestDataContext.Subordinates),
                               new Where<NumericType, StringType>(
                                       new Equal<NumericType>(
                                               new ReadData<NumericType>(nameof(Person.RemainingVacation)),
                                               new GlobalDataNavigation<NumericType>(
                                                   new DataNavigation<NumericType>(
                                                       nameof(TestDataContext.Subordinates), 
                                                       new Max<NumericType>(nameof(Person.RemainingVacation))))),
                               new First<StringType>(nameof(Person.Name))))

About

C# Formulation

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages