Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7080345
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T06:47:02+00:00 2026-05-28T06:47:02+00:00

In my system (C#, MVC, MSSQL,Entity framework) I have a Dictionary for Employee Leave

  • 0

In my system (C#, MVC, MSSQL,Entity framework) I have a Dictionary for Employee Leave Entitlement in Employee class.

 public Dictionary<string, EmployeeLeaveEntitlement> LeaveEntitlementDetails { get; internal set; }   

EmployeeLeaveEntitlement class as follows,

    /// <summary>
    /// Gets or sets the type of the leave.
    /// </summary>
    /// <value>The type of the leave.</value>
    public string LeaveType { get; set; }

    /// <summary>
    /// Gets or sets the entitlement.
    /// </summary>
    /// <value>The entitlement.</value>
    public double Entitlement { get; set; }

    /// <summary>
    /// Gets or sets the availed count.
    /// </summary>
    /// <value>The availed count.</value>
    public double AvailedCount { get; set; }  

What i need is, connect a database to the system,
I already Created context for employee,

 public DbSet<Employee> Employees { get; set; }    

when I run the system it will create database but there are no table or column for the Leave Entitlement..Is there a way to add data to database from a Dictionary?

Help me

Thanks in Advanced.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-28T06:47:03+00:00Added an answer on May 28, 2026 at 6:47 am

    Dictionary types can not be mapped with Entity Framework.

    I do not know what you represent by the key of the dictionary, but you can create a new intermediate entity with keys of Employee, EmployeeLeaveEntitlement and dictionary key and map this as a collection in your Employee class

    public class Foo
    {
        [Key]
        public string DictionaryKey { get; set; }
    
        public string EmployeeId { get; set; }
    
        public string EmployeeLeaveEntitlementId { get; set; }
    
    }
    
    public class Employee
    {
        // other properties
    
        public ICollection<Foo> Foos { get; set; }     
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an action like this: public class News : System.Web.Mvc.Controller { public ActionResult
I have a class that inherits from System.Web.Mvc.RedirectResult which overrides ExecuteResult . How do
My base page looks like: namespace ASDF.Mvc.ViewEngines.Razor { public abstract class WebViewPage<TModel> : System.Web.Mvc.WebViewPage<TModel>
I want my asp.net mvc framework system to send an e-mail everytime a certain
We have a very large enterprise Web application developed using Mojave (MVC) framework in
I'm building a little MVC system (learning) and I have some problems with showing
Does anyone have know how I can step into system.web.mvc? I am getting an
I'm learning ASP.NET MVC 3 with Entity Framework Code First. I'm following a tutorial
I have a project that references the System.Web.Mvc assembly in the GAC. I also
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; namespace MvcApplication3.Controllers { public

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.