I have a sql table, it has many coloumns.
For Instance;
The Table :
CREATE TABLE [dbo].[_BundleFlowData](
[IsCustomer] [bit] NULL,
[CustomerClientNo] [bigint] NULL,
[BranchCode] [bigint] NULL,
[BranchName] [varchar](250) NULL,
[CitizenshipNo] [bigint] NULL,
...
I want a program/a solution that generates interface for each column of the table;
bool IsCustomer { get; set; }
long CustomerClientNo { get; set; }
long BranchCode { get; set; }
string BranchName{ get; set; }
long CitizenshipNo{ get; set; }
...
What is your advice for this case above?