how can use a custom method in controller in asp net mvc

AhuraMazda

i m trying to learn something in asp net mvc.

i could not handle a problem.

i have a custom class like

public class trenMethod
{
    public testDBContex db;
    public List<IsSoSu> ListAll()

    { 
        var Name= from a in db.test1
                   from b in db.test2
                   where a.Name== b.Name
                   select new IsSoSu()
                   {
                       NameLast=a.Name,
                       MidNameLast=a.MidName,
                       SurnameLast=b.Surname
                   };
       return Name.ToList();
    }

it s ok with that. but when i want to use this method in controller, the method does not seem.

public ActionResult IndexTrEn()
    {
        trenMethod.    <there is nothing in here> ( i expect that trenMethod.ListAll(); but there is nothing except "Equals, ReferenceEquals" ) }

where i make mistake?

Mustapha Larhrouch

You need to instantiate the class and use the object:

public ActionResult IndexTrEn()
{
        var tm = new trenMethod();
        tm.ListAll();
        ...
}

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How can i insert data into database using custom controller method or any other way in ASP.net MVC?

From Dev

ASP.NET MVC EntityFramework: how to use LINQ inside ActionResult controller method?

From Dev

ASP.NET MVC EntityFramework: how to use LINQ inside ActionResult controller method?

From Dev

How to impelment a custom controller factory ASP.Net MVC

From Dev

How Can I Use File class in an MVC Controller in ASP.Net?

From Dev

ASP.NET MVC: How to override parent Controller method

From Dev

How to pass value of particular row to controller method in asp .net mvc

From Dev

ASP.NET MVC Custom controller not working

From Dev

ASP.NET MVC - How to use custom Culture in EvoHtmlToPdf

From Dev

ASP.Net MVC checkbox values from view to custom controller method

From Dev

ASP.Net MVC checkbox values from view to custom controller method

From Dev

How to use a method from inside a class in ASP.NET MVC?

From Dev

How to use Simple Injector in an Asp.Net MVC helper method

From Dev

How to use userManager in initialize() method ASP.net MVC 5

From Dev

How can i read cookies in asp.net mvc method?

From Dev

How to get a HTML submit button in an ASP.NET page to call a controller method in MVC controller class

From Dev

Can i have more than one Post method in asp.net mvc controller?

From Dev

how can use / in querystring value in asp.net mvc

From Dev

ASP.NET MVC - JSON.NET extension method for controller

From Dev

How can I use asp.net mvc routing to call a different ActionResult method and display a different URL than what is actually there?

From Dev

How to redirect user to action method of specific controller asp.net mvc

From Dev

How to see every controller & action method called in ASP.Net MVC?

From Dev

ASP.NET MVC - How to call void controller method without leaving the view?

From Dev

How to pass an id from a razor view to a controller's action method in ASP .Net MVC?

From Dev

How to call method of a controller from View without using ajax in ASP.NET MVC?

From Dev

How to see every controller & action method called in ASP.Net MVC?

From Dev

How to make an ASP.NET MVC Controller GET method get invoked only from a link?

From Dev

asp.net mvc exception in controller not beign handled at custom ErroHandler

From Dev

Asp.net MVC Ajax call not calling controller method

Related Related

  1. 1

    How can i insert data into database using custom controller method or any other way in ASP.net MVC?

  2. 2

    ASP.NET MVC EntityFramework: how to use LINQ inside ActionResult controller method?

  3. 3

    ASP.NET MVC EntityFramework: how to use LINQ inside ActionResult controller method?

  4. 4

    How to impelment a custom controller factory ASP.Net MVC

  5. 5

    How Can I Use File class in an MVC Controller in ASP.Net?

  6. 6

    ASP.NET MVC: How to override parent Controller method

  7. 7

    How to pass value of particular row to controller method in asp .net mvc

  8. 8

    ASP.NET MVC Custom controller not working

  9. 9

    ASP.NET MVC - How to use custom Culture in EvoHtmlToPdf

  10. 10

    ASP.Net MVC checkbox values from view to custom controller method

  11. 11

    ASP.Net MVC checkbox values from view to custom controller method

  12. 12

    How to use a method from inside a class in ASP.NET MVC?

  13. 13

    How to use Simple Injector in an Asp.Net MVC helper method

  14. 14

    How to use userManager in initialize() method ASP.net MVC 5

  15. 15

    How can i read cookies in asp.net mvc method?

  16. 16

    How to get a HTML submit button in an ASP.NET page to call a controller method in MVC controller class

  17. 17

    Can i have more than one Post method in asp.net mvc controller?

  18. 18

    how can use / in querystring value in asp.net mvc

  19. 19

    ASP.NET MVC - JSON.NET extension method for controller

  20. 20

    How can I use asp.net mvc routing to call a different ActionResult method and display a different URL than what is actually there?

  21. 21

    How to redirect user to action method of specific controller asp.net mvc

  22. 22

    How to see every controller & action method called in ASP.Net MVC?

  23. 23

    ASP.NET MVC - How to call void controller method without leaving the view?

  24. 24

    How to pass an id from a razor view to a controller's action method in ASP .Net MVC?

  25. 25

    How to call method of a controller from View without using ajax in ASP.NET MVC?

  26. 26

    How to see every controller & action method called in ASP.Net MVC?

  27. 27

    How to make an ASP.NET MVC Controller GET method get invoked only from a link?

  28. 28

    asp.net mvc exception in controller not beign handled at custom ErroHandler

  29. 29

    Asp.net MVC Ajax call not calling controller method

HotTag

Archive