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 9218241
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T02:49:02+00:00 2026-06-18T02:49:02+00:00

I am attempting to persist an object with a delegate property public delegate void

  • 0

I am attempting to persist an object with a delegate property

public delegate void Callback(ScheduledTask ScheduledEvent);
public class ScheduledTask
    {
        [Key]
        public int Id { get; set; }

        /// <summary>
        /// Time the event will be triggered
        /// </summary>
        public DateTime ScheduledTime { get; set;} 


        /// <summary>
        /// Delegate to call back
        /// </summary>
        public Callback callback { get; set; }

        /// <summary>
        /// Any event metadata
        /// </summary>
        public Dictionary<String, object> Metadata { get; set; }
    }

However i receive this error:

(12,10) : error 3004: Problem in mapping fragments starting at lines 6, 12, 21:
No mapping specified for properties ScheduledTask.callback in Set ScheduledTasks.
An Entity with Key (PK) will not round-trip when:
Entity is type [Frontline.Core.Scheduling.ScheduledTask]

when loading the context.

How do i persist an object with a delegate using entity framework?

  • 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-06-18T02:49:04+00:00Added an answer on June 18, 2026 at 2:49 am

    I ended up serialising it to a binary stream and saving that. Kind of gross, but its working.

        public byte[] callbackData { get; set; }
    
        /// <summary>
        /// Delegate to call back
        /// </summary>
        [NotMapped]
        public Callback callback
        {
            get
            {
                if (_callback == null && callbackData != null && callbackData.Count() > 0)
                {
                    BinaryFormatter formatter = new BinaryFormatter();
                    using (var stream = new MemoryStream(callbackData))
                    {
                        _callback = formatter.Deserialize(stream) as Callback;
                    }
                }
                return _callback;
            }
            set
            {
                _callback = value;
                if (value == null)
                {
                    callbackData = null;
                }
                else
                {
                    BinaryFormatter formatter = new BinaryFormatter();
                    using (var stream = new MemoryStream())
                    {
                        formatter.Serialize(stream, value);
                        callbackData = stream.ToArray();
                    }
                }
            }
        }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am attempting to persist/merge a brand new object graph through jpa but it
I have a web app using Hibernate, and I am attempting to persist some
Attempting to get Spring internationalization working. I have used classpath:messages basename, created .properties files
Attempting to set up an automated texting service for customers, where people can text
Attempting/struggling to get registration and sign-up working within an active admin project. I have
I am attempting to persist objects that contain some large Serializable types. I want
When attempting to compile my C# project, I get the following error: 'C:\Documents and
Attempting to set up Samba + OpenLDAP using nss_ldap. After joining Windows7 to Samba
I am attempting to persist what the users enters into a textbox without them
Error occurs when attempting to persist a one-to-many relationship. In particular, a client may

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.