Click here to Skip to main content
15,888,351 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hello,

I have added a Reference to my MVC Application.(The reference i've added is a BO Model from other Project)

Now, In my Mvc Application i would like to create a List based on the Business Objects that available in the dll file.


How can i do this!. Any help regarding this would be appreciated a lot!!
Posted

1 solution

Some code would have helped ...

Anywayz ..

Its pretty standard ..

IEnumerable<boobject> objects = new List<boobject>();

objects.Add(CreateNewBOObject());
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900