Is there any way to generate a class for table in SQL Server without adding table in project with ADO.net Entity Framework?
public class Approval
{
public long Id { get; set; }
public long? FormId { get; set; }
public long? DesignationId { get; set; }
public DateTime? CreatedOn { get; set; }
}
This online tool generates a class from SQL table. Class is based on the CREATE TABLE
script in MS-SQL
, ORACLE
, MYSQL
, POSTGRESQL
and SQLite
databases, to a class in C# and other programming languages.
https://codverter.com/src/sqltoclass
If you want to use Entity Framework you should consider to use Database First approach.
Other simple and fast way to import a Sql Server scheme to a class in VS is this:
Make a select
as json query:
SELECT * FROM Approval
FOR JSON AUTO
Copy one row from the result in your clipboard:
[
{"Id":1, "FormId":10, "DesignationId":100, "CreatedOn":"2000-01-01T00:00:00"},
{"Id":2, "FormId":20, "DesignationId":200, "CreatedOn":"2000-01-01T00:00:00"}
]
Paste in Visual Studio: Edit
> Paste Special
> Paste JSON As Classes
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With