[go: nahoru, domu]

Skip to content

v5.3

Compare
Choose a tag to compare
@dsuryd dsuryd released this 20 Jan 08:20
· 72 commits to master since this release

Enhancements

  • Minimal API as a lightweight alternative to base view model class inheritance (documentation).

Example:

appBuilder.MapVM("HelloWorld", () => new 
{ 
   Greetings = "Hello World",
   ServerTime = Observable.Interval(TimeSpan.FromSeconds(1).Select(_ => DateTime.Now) 
});
  • IDotNetifyConfiguration property CamelCaseSerialization for applying camel case naming when serializing view models.
  • Support dispatching to methods with multiple arguments (#314).
  • Support dispatching to methods with tuple argument type (#314).