Working Grid using Asp.net Core 2.0

Hi Guys please can you supply me with a working example of Core 2.0 using grid and the following:
  • Using Entity Framework code first
  • Using Database
  • Core 2.0 MVC

I have asked for this example but you have sent me partial solutions I need full CRUD example I am having issues with view returning to controller a null


Regards

Edmund Herbert



2 Replies

EH Edmund Herbert September 4, 2017 06:48 AM UTC

Hi Issue with view returning null,

fixed please remember in startup file to add


 services.AddMvc()

                .AddJsonOptions(x =>
                {
                    x.SerializerSettings.ContractResolver = null;
                    x.SerializerSettings.NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore;
                });
I hope this will help other people having same issue with core 2.0 and grid



VA Venkatesh Ayothi Raman Syncfusion Team September 4, 2017 07:10 AM UTC

Hi Edmund, 

Thanks for the information. 

We are very happy to hear that your requirement is achieved by yourself. 

Regards, 
Venkatesh Ayothiraman. 



Loader.
Up arrow icon