memoli63
Asistan
- Katılım
- 14 Kasım 2008
- Mesajlar
- 127
- Reaksiyon puanı
- 0
- Puanları
- 0
Bu şekilde iki tablom var Arayüz ekranını da aşağıdaki gibi tasarladım. Fakat nasıl yapacağımı bilmiyorum . Kaydet tuşuna basıldığı zaman başta parsel tablosuna kayıt yapmalı ve O Id getirip benim tarla tablosunda bulunan parselId kaydettirmem lazım ...
create table tbParsel
(
Id int identity(1,1) primary key not null,
Ada int not null,
ParselNo int not null,
ParselAlani decimal
)
go
create table tbTarla
(
Id int identity(1,1) primary key not null,
TcKimlik nvarchar(11)not null,
ParselId int not null,
ToplamAlan decimal not null,
Il nvarchar(30)not null,
Ilce nvarchar(30)not null,
Koy nvarchar(30) not null
Constraint FK_Tarla_Kisi foreign key(TcKimlik)references tbKisi(Tc) on update cascade,
Constraint FK_Tarla_Parsel foreign key(ParselId) references tbParsel(Id) on update cascade
)
create table tbParsel
(
Id int identity(1,1) primary key not null,
Ada int not null,
ParselNo int not null,
ParselAlani decimal
)
go
create table tbTarla
(
Id int identity(1,1) primary key not null,
TcKimlik nvarchar(11)not null,
ParselId int not null,
ToplamAlan decimal not null,
Il nvarchar(30)not null,
Ilce nvarchar(30)not null,
Koy nvarchar(30) not null
Constraint FK_Tarla_Kisi foreign key(TcKimlik)references tbKisi(Tc) on update cascade,
Constraint FK_Tarla_Parsel foreign key(ParselId) references tbParsel(Id) on update cascade
)