Re: [Firebird-net-provider] FirebirdClient was not found excepction when in use with EF6

2014-11-06 Thread Jiří Činčura
You don’t have factory record in machine/app/web.config.

-- 
Mgr. Jiří Činčura
Independent IT Specialist

--
___
Firebird-net-provider mailing list
Firebird-net-provider@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/firebird-net-provider


Re: [Firebird-net-provider] FirebirdClient was not found excepction when in use with EF6

2014-11-06 Thread Alfred Reinold Baudisch
The cursious thing is that I do have the record in app.config. Actually
that was the 1st thing I looked when I got the error.

  entityFramework
defaultConnectionFactory
type=FirebirdSql.Data.EntityFramework6.FbConnectionFactory,
EntityFramework.Firebird /
providers
  provider invariantName=FirebirdSql.Data.FirebirdClient
type=FirebirdSql.Data.EntityFramework6.FbProviderServices,
EntityFramework.Firebird /
/providers
  /entityFramework

On Thu, Nov 6, 2014 at 7:26 AM, Jiří Činčura j...@cincura.net wrote:

 You don’t have factory record in machine/app/web.config.

 --
 Mgr. Jiří Činčura
 Independent IT Specialist


 --
 ___
 Firebird-net-provider mailing list
 Firebird-net-provider@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/firebird-net-provider




-- 
Best Regards,
Alfred Reinold Baudisch

Unity 3D and Corona SDK Games Developer
Email: alfred.r.baudi...@gmail.com
Skype: AlfredBaudisch
--
___
Firebird-net-provider mailing list
Firebird-net-provider@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/firebird-net-provider


Re: [Firebird-net-provider] FirebirdClient was not found excepction when in use with EF6

2014-11-06 Thread Jiří Činčura
You’re missing record in system.data  DbProviderFactories.

-- 
Mgr. Jiří Činčura
Independent IT Specialist
--
___
Firebird-net-provider mailing list
Firebird-net-provider@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/firebird-net-provider


Re: [Firebird-net-provider] FirebirdClient was not found excepction when in use with EF6

2014-11-06 Thread Alfred Reinold Baudisch
I didn't know about that, but Firebird is there too:
system.data
DbProviderFactories
  add name=FirebirdClient Data Provider
invariant=FirebirdSql.Data.FirebirdClient description=.NET Framework
Data Provider for Firebird
type=FirebirdSql.Data.FirebirdClient.FirebirdClientFactory,
FirebirdSql.Data.FirebirdClient, Version=4.5.1.0, Culture=neutral,
PublicKeyToken=3750abcc3150b00c /
/DbProviderFactories
  /system.data

So app.config and machine.config are already set. What could it be then?

On Thu, Nov 6, 2014 at 10:41 AM, Jiří Činčura j...@cincura.net wrote:

 You’re missing record in system.data  DbProviderFactories.

 --
 Mgr. Jiří Činčura
 Independent IT Specialist

 --
 ___
 Firebird-net-provider mailing list
 Firebird-net-provider@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/firebird-net-provider




-- 
Best Regards,
Alfred Reinold Baudisch

Unity 3D and Corona SDK Games Developer
Email: alfred.r.baudi...@gmail.com
Skype: AlfredBaudisch
--
___
Firebird-net-provider mailing list
Firebird-net-provider@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/firebird-net-provider


[Firebird-net-provider] EF Migrations

2014-11-06 Thread Jiří Činčura
Hi *,

Anybody here willing to give EF Migrations a try? I'm getting close to first 
implementation.

-- 
Mgr. Jiří Činčura
Independent IT Specialist

--
___
Firebird-net-provider mailing list
Firebird-net-provider@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/firebird-net-provider


Re: [Firebird-net-provider] FirebirdClient was not found excepction when in use with EF6

2014-11-06 Thread Jiří Činčura
You’re missing a space there. Check the message closely.
name 'FirebirdSql.Data. FirebirdClient'
Not sure why are you using the space there, maybe to avoid some other 
conflicts? Anyway, if it's not intentional, just remove the space and you're 
good to go.

-- 
Mgr. Jiří Činčura
Independent IT Specialist

--
___
Firebird-net-provider mailing list
Firebird-net-provider@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/firebird-net-provider


Re: [Firebird-net-provider] EF Migrations

2014-11-06 Thread Геннадий Забула
Sure, waiting for this.

2014-11-06 15:06 GMT+02:00 Jiří Činčura j...@cincura.net:

 Hi *,

 Anybody here willing to give EF Migrations a try? I'm getting close to
 first implementation.

 --
 Mgr. Jiří Činčura
 Independent IT Specialist


 --
 ___
 Firebird-net-provider mailing list
 Firebird-net-provider@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/firebird-net-provider

--
___
Firebird-net-provider mailing list
Firebird-net-provider@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/firebird-net-provider


Re: [Firebird-net-provider] FirebirdClient was not found excepction when in use with EF6

2014-11-06 Thread Alfred Reinold Baudisch
The space was something only in the email, it was not in the XML.

Anyway, problem solved! The DbProviderFactories group was only present in
the 32-bit directory. I added it to the machine.config inside
C:\Windows\Microsoft.NET\Framework64\v4.0.30319\Config and now everything
works.

Thanks Jiří, it if wasn't for your help I would never came to this solution
(since nowhere in Google I found something THAT specific about my problem).

On Thu, Nov 6, 2014 at 11:20 AM, Jiří Činčura j...@cincura.net wrote:

 You’re missing a space there. Check the message closely.
 name 'FirebirdSql.Data. FirebirdClient'
 Not sure why are you using the space there, maybe to avoid some other
 conflicts? Anyway, if it's not intentional, just remove the space and
 you're good to go.

 --
 Mgr. Jiří Činčura
 Independent IT Specialist


 --
 ___
 Firebird-net-provider mailing list
 Firebird-net-provider@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/firebird-net-provider




-- 
Best Regards,
Alfred Reinold Baudisch

Unity 3D and Corona SDK Games Developer
Email: alfred.r.baudi...@gmail.com
Skype: AlfredBaudisch
--
___
Firebird-net-provider mailing list
Firebird-net-provider@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/firebird-net-provider


Re: [Firebird-net-provider] EF Migrations

2014-11-06 Thread Mercea Paul
On 2014.11.06 3:06 PM, Jiří Činčura wrote:
 Hi *,

 Anybody here willing to give EF Migrations a try? I'm getting close to first 
 implementation.

I'm in.


Paul MERCEA
___


--
___
Firebird-net-provider mailing list
Firebird-net-provider@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/firebird-net-provider


Re: [Firebird-net-provider] FirebirdClient was not found excepction when in use with EF6

2014-11-06 Thread Jiří Činčura
I would suggest to add it - if it's for application, not your environment - to 
app/web.config. Easier for deploy.

-- 
Mgr. Jiří Činčura
Independent IT Specialist

--
___
Firebird-net-provider mailing list
Firebird-net-provider@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/firebird-net-provider


Re: [Firebird-net-provider] FirebirdClient was not found excepction when in use with EF6

2014-11-06 Thread Alfred Reinold Baudisch
But I'm developing a WinForms application. Isn't web.config only for ASP.NET
apps?


On Thu, Nov 6, 2014 at 4:34 PM, Jiří Činčura j...@cincura.net wrote:

 I would suggest to add it - if it's for application, not your environment
 - to app/web.config. Easier for deploy.

 --
 Mgr. Jiří Činčura
 Independent IT Specialist


 --
 ___
 Firebird-net-provider mailing list
 Firebird-net-provider@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/firebird-net-provider




-- 
Best Regards,
Alfred Reinold Baudisch

Unity 3D and Corona SDK Games Developer
Email: alfred.r.baudi...@gmail.com
Skype: AlfredBaudisch
--
___
Firebird-net-provider mailing list
Firebird-net-provider@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/firebird-net-provider


Re: [Firebird-net-provider] FirebirdClient was not found excepction when in use with EF6

2014-11-06 Thread Jiří Činčura
It’s the same, only it’s called app.config.

-- 
Mgr. Jiří Činčura
Independent IT Specialist
--
___
Firebird-net-provider mailing list
Firebird-net-provider@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/firebird-net-provider