I just want to know how to create classes from database? I'm stuck. Ive read something about class = table. But what if my table has foreign keys? What should I do?
First you need to use some ORM. Linq To Sql or Entity Framework.
For 1-st you
should create *.dbml. Then in the same namespace you can
create class with
name of the table but also make class partial.
(public partial class
TableName
{ } ) in crated class you can add some propperties or
methods.