Monday, March 18, 2019

The quickest way to prototype scalable app in .NET core?

Hi,

I am a very experianced .net / java / PHP developer.

We have an idea that needs to be prototyped and we want to invest minimal effort on the server side at the begining.

Most of the work needs to be done on the client side as it is based on a mobile app and we need to invest most of our time there.

I am choosing c# because of its best syntax. My server side needs are basic. so JAVA/C#/PHP can do the job.

To better describe the server side needs: It is a standard mini ERP system with security and crud operations.Just thinking about setting up the entire server side echo system makes want to bang my head in the wall.

Setup Webapi, then setup repositories, then setup ORM, then setup security, then setup smart DAL for dyanmic queries (search criteias api, paginations), then setup validations and more and more and more....

When I look at java spring boot its kind of half way there. you get the server out of the box and then you put on it the data models and logic.

Well, this the kind of server framework I was hoping to find.

  1. Define your data model.
  2. Get registered to events (preCreate postCreate preUpdate...) and write your business logic.
  3. Rest api by configuration
  4. Security by configuration (simple role and row level)

In PHP there are few frameworks (Laravel) that is lamost there, but PHP is weak type language... Yaaaaaak!

Do you know such framewok?

Thanks

The quickest way to prototype scalable app in .NET core? Click here
  • Blogger Comment
  • Facebook Comment

0 comments:

Post a Comment

The webdev Team