- Saturday, April 4, 2009, 16:46
- Technology, WCF
- 70 views
Winform application accessing database using WCF application
Introduction
This article will give you a good start with using WCF for making database calls from windows application.
Database Table
Create table Designation using following create script:
--Table create script
CREATE TABLE .(
primary key IDENTITY(1,1) NOT NULL,
(20) NOT NULL,
(100) NOT NULL
)
--Add few rows to the table
insert into designation
(designationname, details)
values ('Computer Tech','who works in computer dept')
insert into designation
(designationname, details)
values ('Electrical ...
Full story