-
Notifications
You must be signed in to change notification settings - Fork 5
Open
Description
Assume a SQL code as following:
CREATE TABLE [dbo].[Samples]
(
[Id] INT NOT NULL, -- a comment for Id
[Name] NVARCHAR(10) NOT NULL, -- a cooment for Name
CONSTRAINT [PK_dbo.Samples] PRIMARY KEY CLUSTERED ([Id] ASC),
)I would like to generate a C# code as following:
public partial class Sample
{
/// <summary>
/// a comment for Id
/// </summary>
[Key]
[Column(Order = 0)]
public int Id { get; set; }
/// <summary>
/// a comment for Name
/// </summary>
public string Name { get; set; }
}Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels