I have a list of events, and I would like to group them by year and month,
for example
[Year 2017] Month January
{Event 1, Event 2, Event 2} Month February
{Event 3} [Year 2018] Month January
{Event 4, Event 5}
I'm us...
I use the following project pattern:
WheretheInterfacewillonlycommunicatewiththeapplicationanditwillcommunicatewiththeRepository.Sotheinterfacewillhavenorestrictionsandnoknowledgeofhowcommunicationwiththedatabaseoccurs.InmycaseIusetheEntityFr...
I have a domain on a shared server and inside it I have some subfolders that are set up as applications in IIS 7.
Within the main domain I have created subdomains that redirect to applications / folders.
Ex:
www.domain.com
subdomai...
I'm trying to do a search by filtering through a dropdowlist. In summary, I select a level of instruction in a list and clicking on 'Search' I want to return the list of people who have that level of education.
My problem is in identifying the i...
I'm having problems with accentuation in ASP.NET MVC 5.
I'm using Visual Studio 2013 Professional and the .Net 4.5 application. SQL Server 2008 and Entity Framework 6. The browser is Google Chrome upgraded and Windows is 8.1.
Example:
W...
I have a student table that has many-to-many relationship with the course table.
This results in the CursoAluno table.
I would like to know the correct way for update and delete of the CursoAluno table.
For exam...
I have a field in my application in mvc asp.net c # to put start date and end date.
[Required(ErrorMessage = "A data de início é obrigatória")]
[DisplayFormat(DataFormatString = "{0:dd/MM/yyyy}", ApplyFormatInEditMode = true)]
publ...
I have a MVC project and I will have regular controls and controls providing services via webservices ( Controller and ApiController ).
And I do not know which one to use because I do not know which one is best.
When should I use asynchronous or synchronous methods in controllers (Index, search, delete, create) ASP.NET MVC applications?
Can I lose performance? In which situations should I use one or the other, could you give examples?
If I have...
Reading some tutorials from ASP.NET MVC I found these two helpers being used to do basically the same thing, which was to direct the user to a new view .
Then I would like to know if there is any more noticeable difference...