Partial System.Data.Services implementation

View: New views
11 Messages — Rating Filter:   Alert me  

Partial System.Data.Services implementation

by Eric Maupin :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

I've partially implemented System.Data.Services.dll. Basically everything is present, only DataService<T> is mostly NotImplementedException'd. What's present is enough to get LINQ to NHibernate to build/run on Mono without modification. I wasn't sure about the assembly attributes so they may be wrong or something. NUnit tests are included.


If theres any changes/fixes I need to do, I'd be more than happy to just let me know.

ermau

_______________________________________________
Mono-devel-list mailing list
Mono-devel-list@...
http://lists.ximian.com/mailman/listinfo/mono-devel-list

Re: Partial System.Data.Services implementation

by Atsushi Eno-3 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hi, it's a great challenge :) Are you planning to implement the core
part of the
library? If you are successfully using NHibernate with your patch, then
it seems
that NHibernate does not use DataService *at all*.

For the time being, we have our own coding style that is helpful before our
co-hacking.
http://mono-project.com/Coding_Guidelines

I haven't checked in any Astoria stubs that I have written in the past
(neither of
S.D.Svc.dll and S.D.Svc.Client.dll) as I never thought they can be used
like this,
but I was likely wrong. Let's checkin your code once it takes good shape
in style :)

Atsushi Eno

On 2009/10/19 3:06, Eric Maupin wrote:

> I've partially implemented System.Data.Services.dll. Basically
> everything is present, only DataService<T> is mostly
> NotImplementedException'd. What's present is enough to get LINQ to
> NHibernate to build/run on Mono without modification. I wasn't sure
> about the assembly attributes so they may be wrong or something. NUnit
> tests are included.
>
> http://ermau.com/System.Data.Services.zip
>
> If theres any changes/fixes I need to do, I'd be more than happy to
> just let me know.
>
> ermau
>
>
> _______________________________________________
> Mono-devel-list mailing list
> Mono-devel-list@...
> http://lists.ximian.com/mailman/listinfo/mono-devel-list
>    

_______________________________________________
Mono-devel-list mailing list
Mono-devel-list@...
http://lists.ximian.com/mailman/listinfo/mono-devel-list

Re: Partial System.Data.Services implementation

by Eric Maupin :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

I don't really have any plans to implement DataService, my only goal was to get Linq2NHibernate working on Mono. It mostly just implements some interfaces from System.Data.Services, so it wasn't much to get it working. I went ahead and did everything else in that assembly that I knew how to do, but like I said I don't really know anything about S.D.S so.

I'll see what I can do about having it match the guidelines better and resubmit it.

ermau

On Mon, Oct 19, 2009 at 02:02, Atsushi Eno <atsushieno@...> wrote:
Hi, it's a great challenge :) Are you planning to implement the core part of the
library? If you are successfully using NHibernate with your patch, then it seems
that NHibernate does not use DataService *at all*.

For the time being, we have our own coding style that is helpful before our
co-hacking.
http://mono-project.com/Coding_Guidelines

I haven't checked in any Astoria stubs that I have written in the past (neither of
S.D.Svc.dll and S.D.Svc.Client.dll) as I never thought they can be used like this,
but I was likely wrong. Let's checkin your code once it takes good shape in style :)

Atsushi Eno


On 2009/10/19 3:06, Eric Maupin wrote:
I've partially implemented System.Data.Services.dll. Basically everything is present, only DataService<T> is mostly NotImplementedException'd. What's present is enough to get LINQ to NHibernate to build/run on Mono without modification. I wasn't sure about the assembly attributes so they may be wrong or something. NUnit tests are included.

http://ermau.com/System.Data.Services.zip

If theres any changes/fixes I need to do, I'd be more than happy to just let me know.

ermau


_______________________________________________
Mono-devel-list mailing list
Mono-devel-list@...
http://lists.ximian.com/mailman/listinfo/mono-devel-list
 



_______________________________________________
Mono-devel-list mailing list
Mono-devel-list@...
http://lists.ximian.com/mailman/listinfo/mono-devel-list

Re: Partial System.Data.Services implementation

by Eric Maupin :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hi Atsushi,

I've updated the zip, following the style guidelines best I could.

ermau

On Mon, Oct 19, 2009 at 11:10, Eric Maupin <me@...> wrote:
I don't really have any plans to implement DataService, my only goal was to get Linq2NHibernate working on Mono. It mostly just implements some interfaces from System.Data.Services, so it wasn't much to get it working. I went ahead and did everything else in that assembly that I knew how to do, but like I said I don't really know anything about S.D.S so.

I'll see what I can do about having it match the guidelines better and resubmit it.

ermau


On Mon, Oct 19, 2009 at 02:02, Atsushi Eno <atsushieno@...> wrote:
Hi, it's a great challenge :) Are you planning to implement the core part of the
library? If you are successfully using NHibernate with your patch, then it seems
that NHibernate does not use DataService *at all*.

For the time being, we have our own coding style that is helpful before our
co-hacking.
http://mono-project.com/Coding_Guidelines

I haven't checked in any Astoria stubs that I have written in the past (neither of
S.D.Svc.dll and S.D.Svc.Client.dll) as I never thought they can be used like this,
but I was likely wrong. Let's checkin your code once it takes good shape in style :)

Atsushi Eno


On 2009/10/19 3:06, Eric Maupin wrote:
I've partially implemented System.Data.Services.dll. Basically everything is present, only DataService<T> is mostly NotImplementedException'd. What's present is enough to get LINQ to NHibernate to build/run on Mono without modification. I wasn't sure about the assembly attributes so they may be wrong or something. NUnit tests are included.

http://ermau.com/System.Data.Services.zip

If theres any changes/fixes I need to do, I'd be more than happy to just let me know.

ermau


_______________________________________________
Mono-devel-list mailing list
Mono-devel-list@...
http://lists.ximian.com/mailman/listinfo/mono-devel-list
 




_______________________________________________
Mono-devel-list mailing list
Mono-devel-list@...
http://lists.ximian.com/mailman/listinfo/mono-devel-list

Re: Partial System.Data.Services implementation

by Atsushi Eno-3 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Thanks Eric. I unfortunately don't have hacking environment this week,
so let me have a look and checkin the code if it's looking OK next week.

Atsushi Eno

Eric Maupin wrote:

> Hi Atsushi,
>
> I've updated the zip, following the style guidelines best I could.
>
> ermau
>
> On Mon, Oct 19, 2009 at 11:10, Eric Maupin <me@...
> <mailto:me@...>> wrote:
>
>     I don't really have any plans to implement DataService, my only goal
>     was to get Linq2NHibernate working on Mono. It mostly just
>     implements some interfaces from System.Data.Services, so it wasn't
>     much to get it working. I went ahead and did everything else in that
>     assembly that I knew how to do, but like I said I don't really know
>     anything about S.D.S so.
>
>     I'll see what I can do about having it match the guidelines better
>     and resubmit it.
>
>     ermau
>
>
>     On Mon, Oct 19, 2009 at 02:02, Atsushi Eno
>     <atsushieno@...
>     <mailto:atsushieno@...>> wrote:
>
>         Hi, it's a great challenge :) Are you planning to implement the
>         core part of the
>         library? If you are successfully using NHibernate with your
>         patch, then it seems
>         that NHibernate does not use DataService *at all*.
>
>         For the time being, we have our own coding style that is helpful
>         before our
>         co-hacking.
>         http://mono-project.com/Coding_Guidelines
>
>         I haven't checked in any Astoria stubs that I have written in
>         the past (neither of
>         S.D.Svc.dll and S.D.Svc.Client.dll) as I never thought they can
>         be used like this,
>         but I was likely wrong. Let's checkin your code once it takes
>         good shape in style :)
>
>         Atsushi Eno
>
>
>         On 2009/10/19 3:06, Eric Maupin wrote:
>
>             I've partially implemented System.Data.Services.dll.
>             Basically everything is present, only DataService<T> is
>             mostly NotImplementedException'd. What's present is enough
>             to get LINQ to NHibernate to build/run on Mono without
>             modification. I wasn't sure about the assembly attributes so
>             they may be wrong or something. NUnit tests are included.
>
>             http://ermau.com/System.Data.Services.zip
>
>             If theres any changes/fixes I need to do, I'd be more than
>             happy to just let me know.
>
>             ermau
>
>
>             _______________________________________________
>             Mono-devel-list mailing list
>             Mono-devel-list@...
>             <mailto:Mono-devel-list@...>
>             http://lists.ximian.com/mailman/listinfo/mono-devel-list
>              
>
>
>
>

_______________________________________________
Mono-devel-list mailing list
Mono-devel-list@...
http://lists.ximian.com/mailman/listinfo/mono-devel-list

Re: Partial System.Data.Services implementation

by Miguel de Icaza-2 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hello,

    Coudl you commit this code?

> Hi Atsushi,
>
>
> I've updated the zip, following the style guidelines best I could.
>
>
> ermau
>
> On Mon, Oct 19, 2009 at 11:10, Eric Maupin <me@...> wrote:
>         I don't really have any plans to implement DataService, my
>         only goal was to get Linq2NHibernate working on Mono. It
>         mostly just implements some interfaces from
>         System.Data.Services, so it wasn't much to get it working. I
>         went ahead and did everything else in that assembly that I
>         knew how to do, but like I said I don't really know anything
>         about S.D.S so.
>        
>        
>         I'll see what I can do about having it match the guidelines
>         better and resubmit it.
>        
>        
>         ermau
>        
>        
>        
>         On Mon, Oct 19, 2009 at 02:02, Atsushi Eno
>         <atsushieno@...> wrote:
>                 Hi, it's a great challenge :) Are you planning to
>                 implement the core part of the
>                 library? If you are successfully using NHibernate with
>                 your patch, then it seems
>                 that NHibernate does not use DataService *at all*.
>                
>                 For the time being, we have our own coding style that
>                 is helpful before our
>                 co-hacking.
>                 http://mono-project.com/Coding_Guidelines
>                
>                 I haven't checked in any Astoria stubs that I have
>                 written in the past (neither of
>                 S.D.Svc.dll and S.D.Svc.Client.dll) as I never thought
>                 they can be used like this,
>                 but I was likely wrong. Let's checkin your code once
>                 it takes good shape in style :)
>                
>                 Atsushi Eno
>                
>                
>                
>                 On 2009/10/19 3:06, Eric Maupin wrote:
>                
>                        
>                         I've partially implemented
>                         System.Data.Services.dll. Basically everything
>                         is present, only DataService<T> is mostly
>                         NotImplementedException'd. What's present is
>                         enough to get LINQ to NHibernate to build/run
>                         on Mono without modification. I wasn't sure
>                         about the assembly attributes so they may be
>                         wrong or something. NUnit tests are included.
>                        
>                         http://ermau.com/System.Data.Services.zip
>                        
>                         If theres any changes/fixes I need to do, I'd
>                         be more than happy to just let me know.
>                        
>                         ermau
>                        
>                        
>                        
>                         _______________________________________________
>                         Mono-devel-list mailing list
>                         Mono-devel-list@...
>                         http://lists.ximian.com/mailman/listinfo/mono-devel-list
>                          
>                
>        
>        
>
>
> _______________________________________________
> Mono-devel-list mailing list
> Mono-devel-list@...
> http://lists.ximian.com/mailman/listinfo/mono-devel-list

_______________________________________________
Mono-devel-list mailing list
Mono-devel-list@...
http://lists.ximian.com/mailman/listinfo/mono-devel-list

Re: Partial System.Data.Services implementation

by Eric Maupin :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hi Miguel,

I assume you were addressing me.. I'm taking a closer look in the mono repository and making a few last changes and then I'll go ahead and commit it. Admittedly I'm not as knowledgeable on where (or even if) I should make references it for it to be included in the build. Most of my contributions have been to Mono.Rocks which is a much smaller monkey. So, for the moment, I can get the code at least in the repository and we can go from there.

ermau

On Tue, Nov 3, 2009 at 15:03, Miguel de Icaza <miguel@...> wrote:
Hello,

   Coudl you commit this code?

> Hi Atsushi,
>
>
> I've updated the zip, following the style guidelines best I could.
>
>
> ermau
>
> On Mon, Oct 19, 2009 at 11:10, Eric Maupin <me@...> wrote:
>         I don't really have any plans to implement DataService, my
>         only goal was to get Linq2NHibernate working on Mono. It
>         mostly just implements some interfaces from
>         System.Data.Services, so it wasn't much to get it working. I
>         went ahead and did everything else in that assembly that I
>         knew how to do, but like I said I don't really know anything
>         about S.D.S so.
>
>
>         I'll see what I can do about having it match the guidelines
>         better and resubmit it.
>
>
>         ermau
>
>
>
>         On Mon, Oct 19, 2009 at 02:02, Atsushi Eno
>         <atsushieno@...> wrote:
>                 Hi, it's a great challenge :) Are you planning to
>                 implement the core part of the
>                 library? If you are successfully using NHibernate with
>                 your patch, then it seems
>                 that NHibernate does not use DataService *at all*.
>
>                 For the time being, we have our own coding style that
>                 is helpful before our
>                 co-hacking.
>                 http://mono-project.com/Coding_Guidelines
>
>                 I haven't checked in any Astoria stubs that I have
>                 written in the past (neither of
>                 S.D.Svc.dll and S.D.Svc.Client.dll) as I never thought
>                 they can be used like this,
>                 but I was likely wrong. Let's checkin your code once
>                 it takes good shape in style :)
>
>                 Atsushi Eno
>
>
>
>                 On 2009/10/19 3:06, Eric Maupin wrote:
>
>
>                         I've partially implemented
>                         System.Data.Services.dll. Basically everything
>                         is present, only DataService<T> is mostly
>                         NotImplementedException'd. What's present is
>                         enough to get LINQ to NHibernate to build/run
>                         on Mono without modification. I wasn't sure
>                         about the assembly attributes so they may be
>                         wrong or something. NUnit tests are included.
>
>                         http://ermau.com/System.Data.Services.zip
>
>                         If theres any changes/fixes I need to do, I'd
>                         be more than happy to just let me know.
>
>                         ermau
>
>
>
>                         _______________________________________________
>                         Mono-devel-list mailing list
>                         Mono-devel-list@...
>                         http://lists.ximian.com/mailman/listinfo/mono-devel-list
>
>
>
>
>
>
> _______________________________________________
> Mono-devel-list mailing list
> Mono-devel-list@...
> http://lists.ximian.com/mailman/listinfo/mono-devel-list



_______________________________________________
Mono-devel-list mailing list
Mono-devel-list@...
http://lists.ximian.com/mailman/listinfo/mono-devel-list

Re: Partial System.Data.Services implementation

by Atsushi Eno-3 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Nah, miguel meant me, and very likely replied before reading my
reply to you ;)

Sadly my laptop isn't still returned. *blames Acer support*

Atsushi Eno

ermau wrote:

> Hi Miguel,
>
> I assume you were addressing me.. I'm taking a closer look in the mono
> repository and making a few last changes and then I'll go ahead and
> commit it. Admittedly I'm not as knowledgeable on where (or even if) I
> should make references it for it to be included in the build. Most of my
> contributions have been to Mono.Rocks which is a much smaller monkey.
> So, for the moment, I can get the code at least in the repository and we
> can go from there.
>
> ermau
>
> On Tue, Nov 3, 2009 at 15:03, Miguel de Icaza <miguel@...
> <mailto:miguel@...>> wrote:
>
>     Hello,
>
>        Coudl you commit this code?
>
>      > Hi Atsushi,
>      >
>      >
>      > I've updated the zip, following the style guidelines best I could.
>      >
>      >
>      > ermau
>      >
>      > On Mon, Oct 19, 2009 at 11:10, Eric Maupin <me@...
>     <mailto:me@...>> wrote:
>      >         I don't really have any plans to implement DataService, my
>      >         only goal was to get Linq2NHibernate working on Mono. It
>      >         mostly just implements some interfaces from
>      >         System.Data.Services, so it wasn't much to get it working. I
>      >         went ahead and did everything else in that assembly that I
>      >         knew how to do, but like I said I don't really know anything
>      >         about S.D.S so.
>      >
>      >
>      >         I'll see what I can do about having it match the guidelines
>      >         better and resubmit it.
>      >
>      >
>      >         ermau
>      >
>      >
>      >
>      >         On Mon, Oct 19, 2009 at 02:02, Atsushi Eno
>      >         <atsushieno@...
>     <mailto:atsushieno@...>> wrote:
>      >                 Hi, it's a great challenge :) Are you planning to
>      >                 implement the core part of the
>      >                 library? If you are successfully using NHibernate
>     with
>      >                 your patch, then it seems
>      >                 that NHibernate does not use DataService *at all*.
>      >
>      >                 For the time being, we have our own coding style that
>      >                 is helpful before our
>      >                 co-hacking.
>      >                 http://mono-project.com/Coding_Guidelines
>      >
>      >                 I haven't checked in any Astoria stubs that I have
>      >                 written in the past (neither of
>      >                 S.D.Svc.dll and S.D.Svc.Client.dll) as I never
>     thought
>      >                 they can be used like this,
>      >                 but I was likely wrong. Let's checkin your code once
>      >                 it takes good shape in style :)
>      >
>      >                 Atsushi Eno
>      >
>      >
>      >
>      >                 On 2009/10/19 3:06, Eric Maupin wrote:
>      >
>      >
>      >                         I've partially implemented
>      >                         System.Data.Services.dll. Basically
>     everything
>      >                         is present, only DataService<T> is mostly
>      >                         NotImplementedException'd. What's present is
>      >                         enough to get LINQ to NHibernate to build/run
>      >                         on Mono without modification. I wasn't sure
>      >                         about the assembly attributes so they may be
>      >                         wrong or something. NUnit tests are included.
>      >
>      >                         http://ermau.com/System.Data.Services.zip
>      >
>      >                         If theres any changes/fixes I need to do, I'd
>      >                         be more than happy to just let me know.
>      >
>      >                         ermau
>      >
>      >
>      >
>      >                        
>     _______________________________________________
>      >                         Mono-devel-list mailing list
>      >                         Mono-devel-list@...
>     <mailto:Mono-devel-list@...>
>      >                        
>     http://lists.ximian.com/mailman/listinfo/mono-devel-list
>      >
>      >
>      >
>      >
>      >
>      >
>      > _______________________________________________
>      > Mono-devel-list mailing list
>      > Mono-devel-list@...
>     <mailto:Mono-devel-list@...>
>      > http://lists.ximian.com/mailman/listinfo/mono-devel-list
>
>

_______________________________________________
Mono-devel-list mailing list
Mono-devel-list@...
http://lists.ximian.com/mailman/listinfo/mono-devel-list

Re: Partial System.Data.Services implementation

by Miguel de Icaza-2 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hello,

    I am OK if Ermau checks in the code ;-)

> Nah, miguel meant me, and very likely replied before reading my
> reply to you ;)
>
> Sadly my laptop isn't still returned. *blames Acer support*
>
> Atsushi Eno
>
> ermau wrote:
> > Hi Miguel,
> >
> > I assume you were addressing me.. I'm taking a closer look in the mono
> > repository and making a few last changes and then I'll go ahead and
> > commit it. Admittedly I'm not as knowledgeable on where (or even if) I
> > should make references it for it to be included in the build. Most of my
> > contributions have been to Mono.Rocks which is a much smaller monkey.
> > So, for the moment, I can get the code at least in the repository and we
> > can go from there.
> >
> > ermau
> >
> > On Tue, Nov 3, 2009 at 15:03, Miguel de Icaza <miguel@...
> > <mailto:miguel@...>> wrote:
> >
> >     Hello,
> >
> >        Coudl you commit this code?
> >
> >      > Hi Atsushi,
> >      >
> >      >
> >      > I've updated the zip, following the style guidelines best I could.
> >      >
> >      >
> >      > ermau
> >      >
> >      > On Mon, Oct 19, 2009 at 11:10, Eric Maupin <me@...
> >     <mailto:me@...>> wrote:
> >      >         I don't really have any plans to implement DataService, my
> >      >         only goal was to get Linq2NHibernate working on Mono. It
> >      >         mostly just implements some interfaces from
> >      >         System.Data.Services, so it wasn't much to get it working. I
> >      >         went ahead and did everything else in that assembly that I
> >      >         knew how to do, but like I said I don't really know anything
> >      >         about S.D.S so.
> >      >
> >      >
> >      >         I'll see what I can do about having it match the guidelines
> >      >         better and resubmit it.
> >      >
> >      >
> >      >         ermau
> >      >
> >      >
> >      >
> >      >         On Mon, Oct 19, 2009 at 02:02, Atsushi Eno
> >      >         <atsushieno@...
> >     <mailto:atsushieno@...>> wrote:
> >      >                 Hi, it's a great challenge :) Are you planning to
> >      >                 implement the core part of the
> >      >                 library? If you are successfully using NHibernate
> >     with
> >      >                 your patch, then it seems
> >      >                 that NHibernate does not use DataService *at all*.
> >      >
> >      >                 For the time being, we have our own coding style that
> >      >                 is helpful before our
> >      >                 co-hacking.
> >      >                 http://mono-project.com/Coding_Guidelines
> >      >
> >      >                 I haven't checked in any Astoria stubs that I have
> >      >                 written in the past (neither of
> >      >                 S.D.Svc.dll and S.D.Svc.Client.dll) as I never
> >     thought
> >      >                 they can be used like this,
> >      >                 but I was likely wrong. Let's checkin your code once
> >      >                 it takes good shape in style :)
> >      >
> >      >                 Atsushi Eno
> >      >
> >      >
> >      >
> >      >                 On 2009/10/19 3:06, Eric Maupin wrote:
> >      >
> >      >
> >      >                         I've partially implemented
> >      >                         System.Data.Services.dll. Basically
> >     everything
> >      >                         is present, only DataService<T> is mostly
> >      >                         NotImplementedException'd. What's present is
> >      >                         enough to get LINQ to NHibernate to build/run
> >      >                         on Mono without modification. I wasn't sure
> >      >                         about the assembly attributes so they may be
> >      >                         wrong or something. NUnit tests are included.
> >      >
> >      >                         http://ermau.com/System.Data.Services.zip
> >      >
> >      >                         If theres any changes/fixes I need to do, I'd
> >      >                         be more than happy to just let me know.
> >      >
> >      >                         ermau
> >      >
> >      >
> >      >
> >      >                        
> >     _______________________________________________
> >      >                         Mono-devel-list mailing list
> >      >                         Mono-devel-list@...
> >     <mailto:Mono-devel-list@...>
> >      >                        
> >     http://lists.ximian.com/mailman/listinfo/mono-devel-list
> >      >
> >      >
> >      >
> >      >
> >      >
> >      >
> >      > _______________________________________________
> >      > Mono-devel-list mailing list
> >      > Mono-devel-list@...
> >     <mailto:Mono-devel-list@...>
> >      > http://lists.ximian.com/mailman/listinfo/mono-devel-list
> >
> >
>

_______________________________________________
Mono-devel-list mailing list
Mono-devel-list@...
http://lists.ximian.com/mailman/listinfo/mono-devel-list

Re: Partial System.Data.Services implementation

by Eric Maupin :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Miguel, Atsushi,

The code is now in the repo  mcs/class/System.Data.Services and mcs/class/System.Data.Servies.Tests. I tried the follow the example of some of the other assemblies for the AssemblyInfo.cs, but I'm uncertain about it and as I stated before I haven't added it to the build or anything like that.

ermau

On Thu, Nov 5, 2009 at 12:36, Miguel de Icaza <miguel@...> wrote:
Hello,

   I am OK if Ermau checks in the code ;-)

> Nah, miguel meant me, and very likely replied before reading my
> reply to you ;)
>
> Sadly my laptop isn't still returned. *blames Acer support*
>
> Atsushi Eno
>
> ermau wrote:
> > Hi Miguel,
> >
> > I assume you were addressing me.. I'm taking a closer look in the mono
> > repository and making a few last changes and then I'll go ahead and
> > commit it. Admittedly I'm not as knowledgeable on where (or even if) I
> > should make references it for it to be included in the build. Most of my
> > contributions have been to Mono.Rocks which is a much smaller monkey.
> > So, for the moment, I can get the code at least in the repository and we
> > can go from there.
> >
> > ermau
> >
> > On Tue, Nov 3, 2009 at 15:03, Miguel de Icaza <miguel@...
> > <mailto:miguel@...>> wrote:
> >
> >     Hello,
> >
> >        Coudl you commit this code?
> >
> >      > Hi Atsushi,
> >      >
> >      >
> >      > I've updated the zip, following the style guidelines best I could.
> >      >
> >      >
> >      > ermau
> >      >
> >      > On Mon, Oct 19, 2009 at 11:10, Eric Maupin <me@...
> >     <mailto:me@...>> wrote:
> >      >         I don't really have any plans to implement DataService, my
> >      >         only goal was to get Linq2NHibernate working on Mono. It
> >      >         mostly just implements some interfaces from
> >      >         System.Data.Services, so it wasn't much to get it working. I
> >      >         went ahead and did everything else in that assembly that I
> >      >         knew how to do, but like I said I don't really know anything
> >      >         about S.D.S so.
> >      >
> >      >
> >      >         I'll see what I can do about having it match the guidelines
> >      >         better and resubmit it.
> >      >
> >      >
> >      >         ermau
> >      >
> >      >
> >      >
> >      >         On Mon, Oct 19, 2009 at 02:02, Atsushi Eno
> >      >         <atsushieno@...
> >     <mailto:atsushieno@...>> wrote:
> >      >                 Hi, it's a great challenge :) Are you planning to
> >      >                 implement the core part of the
> >      >                 library? If you are successfully using NHibernate
> >     with
> >      >                 your patch, then it seems
> >      >                 that NHibernate does not use DataService *at all*.
> >      >
> >      >                 For the time being, we have our own coding style that
> >      >                 is helpful before our
> >      >                 co-hacking.
> >      >                 http://mono-project.com/Coding_Guidelines
> >      >
> >      >                 I haven't checked in any Astoria stubs that I have
> >      >                 written in the past (neither of
> >      >                 S.D.Svc.dll and S.D.Svc.Client.dll) as I never
> >     thought
> >      >                 they can be used like this,
> >      >                 but I was likely wrong. Let's checkin your code once
> >      >                 it takes good shape in style :)
> >      >
> >      >                 Atsushi Eno
> >      >
> >      >
> >      >
> >      >                 On 2009/10/19 3:06, Eric Maupin wrote:
> >      >
> >      >
> >      >                         I've partially implemented
> >      >                         System.Data.Services.dll. Basically
> >     everything
> >      >                         is present, only DataService<T> is mostly
> >      >                         NotImplementedException'd. What's present is
> >      >                         enough to get LINQ to NHibernate to build/run
> >      >                         on Mono without modification. I wasn't sure
> >      >                         about the assembly attributes so they may be
> >      >                         wrong or something. NUnit tests are included.
> >      >
> >      >                         http://ermau.com/System.Data.Services.zip
> >      >
> >      >                         If theres any changes/fixes I need to do, I'd
> >      >                         be more than happy to just let me know.
> >      >
> >      >                         ermau
> >      >
> >      >
> >      >
> >      >
> >     _______________________________________________
> >      >                         Mono-devel-list mailing list
> >      >                         Mono-devel-list@...
> >     <mailto:Mono-devel-list@...>
> >      >
> >     http://lists.ximian.com/mailman/listinfo/mono-devel-list
> >      >
> >      >
> >      >
> >      >
> >      >
> >      >
> >      > _______________________________________________
> >      > Mono-devel-list mailing list
> >      > Mono-devel-list@...
> >     <mailto:Mono-devel-list@...>
> >      > http://lists.ximian.com/mailman/listinfo/mono-devel-list
> >
> >
>



_______________________________________________
Mono-devel-list mailing list
Mono-devel-list@...
http://lists.ximian.com/mailman/listinfo/mono-devel-list

Re: Partial System.Data.Services implementation

by vargaz :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hi,

  This has been integrated into the mcs build system.

           thanks

             Zoltan

On Sat, Nov 7, 2009 at 3:05 AM, ermau <me@...> wrote:
Miguel, Atsushi,

The code is now in the repo  mcs/class/System.Data.Services and mcs/class/System.Data.Servies.Tests. I tried the follow the example of some of the other assemblies for the AssemblyInfo.cs, but I'm uncertain about it and as I stated before I haven't added it to the build or anything like that.

ermau

On Thu, Nov 5, 2009 at 12:36, Miguel de Icaza <miguel@...> wrote:
Hello,

   I am OK if Ermau checks in the code ;-)

> Nah, miguel meant me, and very likely replied before reading my
> reply to you ;)
>
> Sadly my laptop isn't still returned. *blames Acer support*
>
> Atsushi Eno
>
> ermau wrote:
> > Hi Miguel,
> >
> > I assume you were addressing me.. I'm taking a closer look in the mono
> > repository and making a few last changes and then I'll go ahead and
> > commit it. Admittedly I'm not as knowledgeable on where (or even if) I
> > should make references it for it to be included in the build. Most of my
> > contributions have been to Mono.Rocks which is a much smaller monkey.
> > So, for the moment, I can get the code at least in the repository and we
> > can go from there.
> >
> > ermau
> >
> > On Tue, Nov 3, 2009 at 15:03, Miguel de Icaza <miguel@...
> > <mailto:miguel@...>> wrote:
> >
> >     Hello,
> >
> >        Coudl you commit this code?
> >
> >      > Hi Atsushi,
> >      >
> >      >
> >      > I've updated the zip, following the style guidelines best I could.
> >      >
> >      >
> >      > ermau
> >      >
> >      > On Mon, Oct 19, 2009 at 11:10, Eric Maupin <me@...
> >     <mailto:me@...>> wrote:
> >      >         I don't really have any plans to implement DataService, my
> >      >         only goal was to get Linq2NHibernate working on Mono. It
> >      >         mostly just implements some interfaces from
> >      >         System.Data.Services, so it wasn't much to get it working. I
> >      >         went ahead and did everything else in that assembly that I
> >      >         knew how to do, but like I said I don't really know anything
> >      >         about S.D.S so.
> >      >
> >      >
> >      >         I'll see what I can do about having it match the guidelines
> >      >         better and resubmit it.
> >      >
> >      >
> >      >         ermau
> >      >
> >      >
> >      >
> >      >         On Mon, Oct 19, 2009 at 02:02, Atsushi Eno
> >      >         <atsushieno@...
> >     <mailto:atsushieno@...>> wrote:
> >      >                 Hi, it's a great challenge :) Are you planning to
> >      >                 implement the core part of the
> >      >                 library? If you are successfully using NHibernate
> >     with
> >      >                 your patch, then it seems
> >      >                 that NHibernate does not use DataService *at all*.
> >      >
> >      >                 For the time being, we have our own coding style that
> >      >                 is helpful before our
> >      >                 co-hacking.
> >      >                 http://mono-project.com/Coding_Guidelines
> >      >
> >      >                 I haven't checked in any Astoria stubs that I have
> >      >                 written in the past (neither of
> >      >                 S.D.Svc.dll and S.D.Svc.Client.dll) as I never
> >     thought
> >      >                 they can be used like this,
> >      >                 but I was likely wrong. Let's checkin your code once
> >      >                 it takes good shape in style :)
> >      >
> >      >                 Atsushi Eno
> >      >
> >      >
> >      >
> >      >                 On 2009/10/19 3:06, Eric Maupin wrote:
> >      >
> >      >
> >      >                         I've partially implemented
> >      >                         System.Data.Services.dll. Basically
> >     everything
> >      >                         is present, only DataService<T> is mostly
> >      >                         NotImplementedException'd. What's present is
> >      >                         enough to get LINQ to NHibernate to build/run
> >      >                         on Mono without modification. I wasn't sure
> >      >                         about the assembly attributes so they may be
> >      >                         wrong or something. NUnit tests are included.
> >      >
> >      >                         http://ermau.com/System.Data.Services.zip
> >      >
> >      >                         If theres any changes/fixes I need to do, I'd
> >      >                         be more than happy to just let me know.
> >      >
> >      >                         ermau
> >      >
> >      >
> >      >
> >      >
> >     _______________________________________________
> >      >                         Mono-devel-list mailing list
> >      >                         Mono-devel-list@...
> >     <mailto:Mono-devel-list@...>
> >      >
> >     http://lists.ximian.com/mailman/listinfo/mono-devel-list
> >      >
> >      >
> >      >
> >      >
> >      >
> >      >
> >      > _______________________________________________
> >      > Mono-devel-list mailing list
> >      > Mono-devel-list@...
> >     <mailto:Mono-devel-list@...>
> >      > http://lists.ximian.com/mailman/listinfo/mono-devel-list
> >
> >
>



_______________________________________________
Mono-devel-list mailing list
Mono-devel-list@...
http://lists.ximian.com/mailman/listinfo/mono-devel-list



_______________________________________________
Mono-devel-list mailing list
Mono-devel-list@...
http://lists.ximian.com/mailman/listinfo/mono-devel-list