[Firebird-net-provider] No lazy loading?

2014-02-09 Thread Sibylle Koczian
Hello, I can't get lazy loading to work as I think it should. Parts of the problem: Entity Framework 6.0.2, Firebird ADO.NET provider 4.1.0.0 (Entity Framework 6), Visual Studio 2012 Professional, Firebird 2.5.2, Windows 7. Database server on localhost. Two related tables: motherdata, fields

Re: [Firebird-net-provider] No lazy loading?

2014-02-09 Thread Jiri Cincura
Show us the code. -- Jiri {x2} Cincura (x2develop.com founder) http://blog.cincura.net/ | http://www.ID3renamer.com -- Managing the Performance of Cloud-Based Applications Take advantage of what the Cloud has to offer

Re: [Firebird-net-provider] No lazy loading?

2014-02-09 Thread Sibylle Koczian
Am 09.02.2014 15:52, schrieb Jiri Cincura: Show us the code. Ok: --- Model classes: class CHILDDATA { public int CHILDID { get; set; } public int MOTHERID { get; set; } public string CHILDNAME { get; set; } public virtual MOTHERDATA Mother { get; set; } }