In my AdministrationController I use a PupilViewModel like: _adminRepo.GetSchoolclassPupilList().ForEach(s =>
I has a ViewModel (StoreViewModel). When I get value in VM from View to Controller (Post), some value is null, only some value that is shown on View is not null
At the start of the development I faced with problem called \"an impedance mismatch between domain model and the view\". To solve this problem I decide to use ViewModel pattern - for every view (that
From my 开发者_如何学GoRepository I get always an IEnumerable<T>. In the Ctor or a method of my ViewModel I want to wrap my entities into an ObservableCollection<T> like this:
With asp.net-4.0 I did this: slideshow.aspx <div class=\"wrapCarousel\"> <div class=\"Carousel\">
I\'m developing a fairly simple WPF application to display an object hierarchy plus detail of the selected object, with a UserControl wrapping a TreeView in the left pane (the tree control), and anoth
My application\'s main component is a tab control which holds N number of views and those views\' datacontext is a separate ViewModel object. I have a statusbar at the bottom of the app and it contain
Yo I have a registration page on my site - at the top of the page is a login form for existing users. In the main area there is the registration form.
I have a ThingViewModel with a DateTime property: public class ThingViewModel { public D开发者_运维问答ateTime ConfigDate{get;set;}
I\'m creating MVVM application and in Model section I have simple base abstract class Animal and class Dog which derives from it: