c# - How to pass typed dataset objects using web services -
i have c# winform application (.net 3.5) access mssql server using typed dataset objects.
currently, whole application working in 1 layer, , client access directly db using typed dataset objects.
i want change application client-server model (which use web-services communication).
my question is: how can pass typed dataset objects in web-services? example, have table of persons. , want client side able specific person (using web-service), update age, , save change (again using web service).
is possible?
thanks
you should try out hibernate. intermediate entity-based mapping between classes , database tables. queries performed on business side of application (web service in case) in hql language; similar regular sql. i've used multiple times java , can quite useful. doing brief internet search found "nhibernate" .net specific version hibernate.
for specific java application, set such gui not on web-service, while else is. using resource manager, created "link" pointed @ business side. transactions performed on web-service, while being displayed on client side.
so answer question; yes entirely possible.
Comments
Post a Comment