Skip to content

Latest commit

 

History

History
27 lines (23 loc) · 604 Bytes

README.md

File metadata and controls

27 lines (23 loc) · 604 Bytes
authors title lastmod created license keywords tags categories
dgmjr
README.md
2023-03-24-05:58:52
2023-03-24-05:58:52
MIT
DGMJR-IO
DGMJR-IO
DGMJR-IO

Interface Generator

You can use this library to generate an interface from an extant class. Let's say you want to create an interface for the DbContext class. You can do that with the following code:

[InterfaceGenerator(typeof(Microsoft.EntityFrameworkCore.DbContext))]
public partial interface IDbContext
{
}

Make sure to mark the interface as partial or it won't work.