asp.net mvc - How to Prevent Entity Framework to Make all the attributes in the database -
the entity framework make attributes fields in database how make entity not create 1 or more attributes database fields ?
you can use notmapped, before attribute
[notmapped] public string username{get; set;}
Comments
Post a Comment