Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question

2 Answers

up vote 0 down vote accepted

You could use T4 Templates to connect to the database and generate your interfaces.

T4 Templates: http://msdn.microsoft.com/en-us/library/bb126445.aspx

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.