Skip to content

Instantly share code, notes, and snippets.

@manoj-choudhari-git
Created April 18, 2021 13:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save manoj-choudhari-git/44aaf359a3b12324efd0f9e53f776325 to your computer and use it in GitHub Desktop.
Save manoj-choudhari-git/44aaf359a3b12324efd0f9e53f776325 to your computer and use it in GitHub Desktop.
Custom configuration provider - Entity Framework Model for storing configuration settings in database
public class ConfigurationSetting
{
public int Id { get; set; }
public string Key { get; set; }
public string Value { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment