Search results for query: *

  1. sachin Shrestha

    mixing hosting models?

    how can i run two asp .net core sites in same application pool of smarter asp as the error says two asp .net core application cannot be hosted in same application pool
  2. 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?
  3. 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
  4. 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...
  5. sachin Shrestha

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

    what I mean is as in Microsoft site we Guilline for c# Naming Convention as to start variable name from camelcase and data member of the class in Pascal case so I am asking for Convention for what convention should we follow for Vertical spacing in c# specially in writing functions or actions...
  6. sachin Shrestha

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

    Guidlines for Vertical spacing in c#
  7. sachin Shrestha

    testing web API endpoint locally?

    how can i set up local server from visual studio 2019 as I need to check it from there I don't want to publish the project to the file ad paste that o the local iis
  8. 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
  9. 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;}...
  10. 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...
  11. 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
  12. 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