Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. General Programming
  3. Visual Basic
  4. Entity Framework : Why this extension is not usable ?

Entity Framework : Why this extension is not usable ?

Scheduled Pinned Locked Moved Visual Basic
helpcsharpasp-netjson
18 Posts 3 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • D Dave Kreskowiak

    I don't know what you've got wrong because I can't replicated it. This is the modified extension code I used:

    Imports System.Data.Entity.Core.Objects.DataClasses
    Imports System.Runtime.Serialization
    Imports System.IO
    Imports System.Runtime.CompilerServices
    Imports System.Data.Objects

    Module Extensions

    Public Function Clone(Of T)(source As T) As T
        Dim ser = New DataContractSerializer(GetType(T))
        Using stream = New MemoryStream()
            ser.WriteObject(stream, source)
            stream.Seek(0, SeekOrigin.Begin)
            Return CType(ser.ReadObject(stream), T)
        End Using
    End Function
    

    End Module

    A guide to posting questions on CodeProject

    Click this: Asking questions is a skill. Seriously, do it.
    Dave Kreskowiak

    D Offline
    D Offline
    dilkonika
    wrote on last edited by
    #9

    This exactly the same code that I have used. but I get the error that I have posted before.

    D 1 Reply Last reply
    0
    • D dilkonika

      This exactly the same code that I have used. but I get the error that I have posted before.

      D Offline
      D Offline
      Dave Kreskowiak
      wrote on last edited by
      #10

      It just dawned on me why you're getting that error. The object you're trying to Clone is referencing other object in the database that haven't been re-hydrated by EF yet. That's where those strange looking proxy objects are coming from. In order to get it to work, you have to load the objects being referenced before you try and Close the base object.

      A guide to posting questions on CodeProject

      Click this: Asking questions is a skill. Seriously, do it.
      Dave Kreskowiak

      D 1 Reply Last reply
      0
      • D Dave Kreskowiak

        It just dawned on me why you're getting that error. The object you're trying to Clone is referencing other object in the database that haven't been re-hydrated by EF yet. That's where those strange looking proxy objects are coming from. In order to get it to work, you have to load the objects being referenced before you try and Close the base object.

        A guide to posting questions on CodeProject

        Click this: Asking questions is a skill. Seriously, do it.
        Dave Kreskowiak

        D Offline
        D Offline
        dilkonika
        wrote on last edited by
        #11

        The way I'm getting the object that i want to clone is this : -I have a listbox bound to a bindingsource (that have as datasource = (From t in context.Myobjects where t.id>5 select t ).Tolist - The user select several items from listbox. - I have a listitm=New list(of Myobject) , where i add one by one the items selected from listbox. - After i have the code that i posted to my question :

        Dim litm, newitm as MyObject
        For Each litm In itemlist
        newitm = litm.Clone()
        ...
        Next

        so in this situation , do you have an idea why i have those strange looking proxy objects like : MyObject_F2FFE64DA472EB2B2BDF7E143DE887D3845AD9D1731FD3107937062AC0C2E4BB Thank you !

        D 1 Reply Last reply
        0
        • D dilkonika

          The way I'm getting the object that i want to clone is this : -I have a listbox bound to a bindingsource (that have as datasource = (From t in context.Myobjects where t.id>5 select t ).Tolist - The user select several items from listbox. - I have a listitm=New list(of Myobject) , where i add one by one the items selected from listbox. - After i have the code that i posted to my question :

          Dim litm, newitm as MyObject
          For Each litm In itemlist
          newitm = litm.Clone()
          ...
          Next

          so in this situation , do you have an idea why i have those strange looking proxy objects like : MyObject_F2FFE64DA472EB2B2BDF7E143DE887D3845AD9D1731FD3107937062AC0C2E4BB Thank you !

          D Offline
          D Offline
          Dave Kreskowiak
          wrote on last edited by
          #12

          I just told you why. The object has a reference to another related object that EF hasn't loaded.

          A guide to posting questions on CodeProject

          Click this: Asking questions is a skill. Seriously, do it.
          Dave Kreskowiak

          D 1 Reply Last reply
          0
          • D Dave Kreskowiak

            I just told you why. The object has a reference to another related object that EF hasn't loaded.

            A guide to posting questions on CodeProject

            Click this: Asking questions is a skill. Seriously, do it.
            Dave Kreskowiak

            D Offline
            D Offline
            dilkonika
            wrote on last edited by
            #13

            Actually , i have loaded all referenced object , but i think some of them are loaded only with some of the properties. MyObjects - ob1 I have loaded ob1 like below : Myob1list=(From t in context.ob1s Select t.id,t.name).Tolist May be this the problem , and if yes , what should i do ? Thank you !

            D 1 Reply Last reply
            0
            • D dilkonika

              Actually , i have loaded all referenced object , but i think some of them are loaded only with some of the properties. MyObjects - ob1 I have loaded ob1 like below : Myob1list=(From t in context.ob1s Select t.id,t.name).Tolist May be this the problem , and if yes , what should i do ? Thank you !

              D Offline
              D Offline
              Dave Kreskowiak
              wrote on last edited by
              #14

              You have to load the child objects in your query:

              Myob1list = (From t in context.ob1s.Include("chld")
                           Select t).ToList()
              

              (I'm converting C# code from memory. I haven't touched VB.NET in a few years now.)

              A guide to posting questions on CodeProject

              Click this: Asking questions is a skill. Seriously, do it.
              Dave Kreskowiak

              D 1 Reply Last reply
              0
              • D Dave Kreskowiak

                You have to load the child objects in your query:

                Myob1list = (From t in context.ob1s.Include("chld")
                             Select t).ToList()
                

                (I'm converting C# code from memory. I haven't touched VB.NET in a few years now.)

                A guide to posting questions on CodeProject

                Click this: Asking questions is a skill. Seriously, do it.
                Dave Kreskowiak

                D Offline
                D Offline
                dilkonika
                wrote on last edited by
                #15

                Sorry , but I'm using lazyloading. and I've read that these proxy objects , are related with using of lazyloading. So , why all other actions that I do with my objects works without problems, and this Clone action produce errors ?

                D S 2 Replies Last reply
                0
                • D dilkonika

                  Sorry , but I'm using lazyloading. and I've read that these proxy objects , are related with using of lazyloading. So , why all other actions that I do with my objects works without problems, and this Clone action produce errors ?

                  D Offline
                  D Offline
                  Dave Kreskowiak
                  wrote on last edited by
                  #16

                  dilkonika wrote:

                  Sorry , but I'm using lazyloading. and I've read that these proxy objects , are related with using of lazyloading.

                  Yeah, I can see that.

                  dilkonika wrote:

                  So , why all other actions that I do with my objects works without problems, and this Clone action produce errors ?

                  Because the proxy classes are dynamically generated by EF and are not serializable.

                  A guide to posting questions on CodeProject

                  Click this: Asking questions is a skill. Seriously, do it.
                  Dave Kreskowiak

                  1 Reply Last reply
                  0
                  • D dilkonika

                    Sorry , but I'm using lazyloading. and I've read that these proxy objects , are related with using of lazyloading. So , why all other actions that I do with my objects works without problems, and this Clone action produce errors ?

                    S Offline
                    S Offline
                    Sascha Lefevre
                    wrote on last edited by
                    #17

                    dilkonika wrote:

                    Sorry , but I'm using lazyloading.

                    That doesn't mean you can't tell EF it should eager-load dependencies when you need it (which is what Include(..) does).

                    D 1 Reply Last reply
                    0
                    • S Sascha Lefevre

                      dilkonika wrote:

                      Sorry , but I'm using lazyloading.

                      That doesn't mean you can't tell EF it should eager-load dependencies when you need it (which is what Include(..) does).

                      D Offline
                      D Offline
                      dilkonika
                      wrote on last edited by
                      #18

                      yes , but when I call the extension , these objects are already loaded in the way that I have described.

                      1 Reply Last reply
                      0
                      Reply
                      • Reply as topic
                      Log in to reply
                      • Oldest to Newest
                      • Newest to Oldest
                      • Most Votes


                      • Login

                      • Don't have an account? Register

                      • Login or register to search.
                      • First post
                        Last post
                      0
                      • Categories
                      • Recent
                      • Tags
                      • Popular
                      • World
                      • Users
                      • Groups