Search results for query: *

  1. sachin Shrestha

    mixing hosting models?

    How To Fix HTTP Error 500.34 - ASP.NET Core does not support mixing hosting models in .Net Core for Smarter Asp Hosting?
  2. sachin Shrestha

    Can we host Dot .net core web app on free Hosting Services like https://app.infinityfree.net/

    i want to host my asp .net core web app in free php hosting services is it free
  3. sachin Shrestha

    How to set Vaues to the Nested Property using Reflection

    how can i dynamically set values to the name of country district city landmark public class Region { public int id; public string name; public Country CountryInfo{get;set;} = new Country(); public City CityInfo{get; set;}= new City(); public District DistrictInfo{get...
  4. sachin Shrestha

    What is Guidline For Vertical Spacing in c# When to do it asp.net actions

    Guidlines for Vertical spacing in c#
  5. sachin Shrestha

    testing web API endpoint locally?

    I am Developing a web API in .net MVC how to access that API endpoint in my devices which are connected to my local network for testing on my phone? keyoti not working properly
  6. sachin Shrestha

    Child Entity not getting added or updated while updating the parent entity

    For example, we have a car and it is the Parent class of Models so cars can have many models possible so while updating the car with models car is getting updated but models are not getting added or modified in Entity Framework . public class Car{ public string name{get;set;}...
  7. sachin Shrestha

    Resolved Is it ok To Transfer route values from controller to views with viewdata and view bag rather than ViewModel

    Which is Good To Use By View bag or By ViewModel [HttpGet] public ActionResult Edit(string searchedSiblingStudentName=null) { Viewbag.SearchedStudentName= searchedSiblingStudentName; return View() } [/CODE] [HttpGet] public ActionResult Edit(string...
  8. sachin Shrestha

    Resolved Which is a good way To Pass Two List of objects To the Partial View

    Should i use Viemodel to pass it or pass it through the viewbag
  9. sachin Shrestha

    is it ok to call the same Linq query multiple times for loading object from DB in same action method

    Below is My Controller action in the first line I have gotten the student from db and in 5 line I have use service function in which I have passed the student id which will again load the student from db is it good public ActionResult DeleteStudentInterest(int studentId, String...
Back
Top Bottom