EntityFramework.Metadata
EntityFramework.Metadata copied to clipboard
Get table metadata for your Entity Framework entities.
Results
1
EntityFramework.Metadata issues
Sort by
recently updated
recently updated
newest added
Is there a way to get the string for a datatype (`VARCHAR(MAX)`/`INT`/`UNIQUEIDENTIFIER`/etc)? For example, to construct a dynamic SQL string: ``` using (var context = new MyContext()) { var entityInfo...