ADO.NET vNext: The Entity Framework, LINQ and more

Published 11 July 06 09:57 AM | alexbarn 

(this post was originally posted here)

Once you are done with shipping large products such as SQL Server 2005 and Visual Studio 2005 you’d expect to have a quiet time for a while, slow down a bit, that kind of stuff…

Turns out that it wasn’t the case this time. Right after SQL Server 2005 and Visual Studio 2005 were ready to ship (and actually even before they were completely done) we started to work hard on the next version of the data programming technologies; we worked on a broad vision that spans various releases and various technologies, and also specifically on how ADO.NET plays in that vision.

In the context of the vision for data programmability and ADO.NET, we decided that the next big step for ADO.NET was to move to a higher-level of abstraction. Connections, commands and readers are great for low-level stuff, but it’s not exactly what you want to be dealing with continuously when writing business logic. There are other aspects that are similarly “low level” and applications have to deal with, like the actual database schemas (e.g. did you even wonder why you have to do a 3-way join just to navigate a relationship between entities instead of just saying “traverse the relationship”?).

Now we’re making public our vision on data programmability, it’s a great read, I highly recommend it.

We’re also making public the specific plans for the next version of ADO.NET, a bit more technical, less formal, but with all the details of how we’re moving the technology forward and describes the ADO.NET Entity Framework, as well as the ADO.NET Entity Data Model (EDM).

The first of a series of Channel 9 videos has been posted - this one features Sam and Anders talking about Entities, LINQ and a few details about how all the stuff fits together.

Feedback on all of this stuff is welcome. I highly encourage folks to check out all of the content we’re putting out there and write us with your thoughts.

Pablo Castro
ADO.NET Technical Lead
Microsoft Corporation

Filed under: ,

Comment Notification

If you would like to receive an email when updates are made to this post, please register here

Subscribe to this post's comments using RSS

Comments

# ADO.NET team blog said on July 11, 2006 1:06 PM:
Hi - I'm Shyam Pather, Development Lead on the ADO.NET vNext team.
I’m incredibly excited to share...
# ADO.NET team blog said on July 19, 2006 4:43 PM:
A few weeks ago we released a couple of whitepapers that discuss the future directions of the Microsoft...
# Josh said on July 20, 2006 8:54 AM:
Im very excited about the CTP bits coming out!

One question I have about this (and I am not a DB master) is I have been told to use stored procedures over TSQL for security reasons (sql injection) and for performance because I was told a stored procedure is faster than TSQL.

How can stored procedures be utilized in the new Entity Fx? Also, Is there an estimated release window for this new featureset? Will it be released with Orcas and LINQ or .Net 3.0?

Thanks for your hard work!
Josh
# Alejandro said on July 21, 2006 1:49 PM:
Pablo, increible leer tus post, sabiendo que estas en Corp.
Recuerdo epocas que asistia a tus charlas en Bouchard.
Te mando un abrazo desde tu tierra.

Congratulatios.

alejandro (at) mazzitelli.org
# jacobeo said on July 28, 2006 10:38 AM:
At least microsoft includes a persistent framework??

Why this tech. arrives so late?

Congratulations for the work.

# SQLite Development Blog said on August 3, 2006 6:22 PM:
It's high time I started a blog.  I might as well start with a bang, so here goes:
The ADO.NET...
# Robin Bygrave said on August 6, 2006 8:51 PM:
rbygrave at yahoo dot com

Hi guys,
Congratulations, this looks like good stuff.  I have a couple of questions. Apologies if this is the wrong place to ask.

My questions revolve around the example of "Manipulating Data and Persisting Changes". In that example we give the sales reps a 10% bonus.

Q: If you change the scenario to that there is a long time gap between fetching the data objects and persisting them back. How is that handled?  Are you able to use a different ObjectContext and if so what effect does that have?  Is the concurrency checking effected by using a different ObjectContext?

Q: It appears to me that it is the developer that controls the construction and closing of the ObjectContext (AdventureWorksDB in the example).
What effect does this have on lazy loading,  specifically are you able to do lazy loading after the associated ObjectContext has gone out of scope?


Thanks,
Rob.
# Jonathan Bruce's WebLog said on August 7, 2006 9:40 AM:
This time last week we had just started sinking our teeth into an deep dive discussion on all things ADO.NET vNext. Looking back, I think the meetings were an enormous success - my thanks to everyone at Microsoft, and particularily...
# Pablo [MSFT] said on August 15, 2006 7:49 PM:
>>Congratulations, this looks like good stuff.  

Thanks :)

>> Q: If you change the scenario to that there is a long time gap between fetching the data objects and persisting them back. How is that handled?  Are you able to use a different ObjectContext and if so what effect does that have?  Is the concurrency checking effected by using a different ObjectContext?

In the current CTP there is no support for the "long running scenario". We're actively looking at this specific scenario and how applications drop and later on re-construct their execution context, including the object context. The goal of that is to preserve, at users' option, optimistic concurrency check-related information.

>> Q: It appears to me that it is the developer that controls the construction and closing of the ObjectContext (AdventureWorksDB in the example).
What effect does this have on lazy loading,  specifically are you able to do lazy loading after the associated ObjectContext has gone out of scope?

Right now no, lazy loading has to happen within the same context. You can, however, close/re-open the underlying connection if you want to lower the pressure in the database. Once the disconnect/reconnect story (mentioned in the previous answer) is in place, this may be possible.

-pablo
# Alex Barnett blog said on August 15, 2006 11:57 PM:
The ADO.NET vNext Community Technology Preview ('CTP') went live today...Hopefully I can convince Tommy...
# Jorge Serrano - MVP Visual Developer - Visual Basic said on August 16, 2006 3:10 AM:
Microsoft ha anunciado hace tan sólo unas horas, el ADO.NET vNext CTP Agosto 2006, que incluye
# Robin Bygrave said on August 23, 2006 8:26 PM:
>>>
In the current CTP there is no support for the "long running scenario". We're actively looking at this specific scenario and how applications drop and later on re-construct their execution context, including the object context. The goal of that is to preserve, at users' option, optimistic concurrency check-related information.
<<<
For Concurrency checking I believe this will come down to 3 options.
1. degrade down to using a version column
2. invoke an additional query against the database
3. Another approach using full column concurrency checking

If you choose option 3 then you will need to store/keep the version information somewhere. Currently I suspect you keep it with the ObjectContext given the answer above.

Q: Is the ObjectContext a "per user" type of object?

Q: If so and you choose option 3 then is it the case that
some "user session management" will be required?

That is, assuming that the ObjectContext is not to be shared amoungst users then that means to keep a ObjectContext open (or rebuild it with version information) over multiple requests (Aka "long running scenario") then the ObjectContext (or its info) will have to be held in something like a "user session" perhaps linked to a webservers user session.

If you choose concurrency options 1 or 2 then you could just rebuild an empty ObjectContext because neither of those options require separate version information. The issue here being the loss of full column concurrency checking.


Q: Am I off base or is close to the track you are taking?

Thanks, Rob.
# the rasx() context » Blog Archive » System.Data Reformation said on October 20, 2006 2:48 PM:

PingBack from http://www.kintespace.com/rasxlog/?p=479

# sadat said on April 30, 2007 1:49 PM:

link on "our vision on data programmability" looks broken

# What Everyone is Excited About - LINQ « Wilfred Mworia’s Blog said on June 28, 2007 9:50 AM:

PingBack from http://wmworia.wordpress.com/2007/06/28/what-everyone-is-excited-about-linq/

# james said on August 1, 2007 10:10 PM:

hi alexbarn, the link for "our vision on data programmability" is broken. where can I get it now?

# Gili said on August 4, 2008 2:22 PM:

<a href= http://index1.djlea.com >reflections gallery</a> <a href= http://index2.djlea.com >there stands the glass</a> <a href= http://index3.djlea.com >risque lingerie sales</a> <a href= http://index4.djlea.com >movies in knoxville</a> <a href= http://index5.djlea.com >is it important for a boyfriend to give his girlfriend a birthday gift</a>

# ADO NET team blog ADO NET vNext The Entity Framework LINQ and more | Wood TV Stand said on May 31, 2009 8:22 PM:

PingBack from http://woodtvstand.info/story.php?id=6509

# ADO NET team blog ADO NET vNext The Entity Framework LINQ and more | Paid Surveys said on June 2, 2009 3:38 AM:

PingBack from http://paidsurveyshub.info/story.php?id=63084

# 逆援交際 said on June 19, 2009 11:13 PM:

会員制の逆援交際倶楽部では男性は無料、一日最低額10万円保障での交際をお求めできます。ご登録された女性様達はセレブであるがための悩みをそれぞれの方が持ち、皆様、男性との営みを求め、ご登録されております。彼女たちとの初々しい一時をお楽しみ、謝礼をいただいてくださいませ。会員制ですので人数に限りがあるため、打ち切りの場合はご了承ください

# 家出 said on June 20, 2009 11:16 PM:

家出中でネットカフェやマンガ喫茶にいる女の子たちは、お金が無くなり家出掲示板で今晩泊めてくれる男性を探しています。ご飯を食べさせてあげたり泊めてあげることで彼女たちはHなお礼をしてくれる事が多いようです

# 勝ち組負け組 said on June 21, 2009 11:09 PM:

当サイトは、みんなの「勝ち組負け組度」をチェックする性格診断のサイトです。ホントのあなたをズバリ分析しちゃいます!勝ち組負け組度には、期待以上の意外な結果があるかもしれません

# 素人 said on June 22, 2009 10:58 PM:

男性が主役の素人ホストでは、男性のテクニック次第で女性会員様から高額な謝礼がもらえます。欲求不満な人妻や、男性と出会いが無い女性が当サイトで男性を求めていらっしゃいます。興味のある方はTOPページからどうぞ

# エロ漫画 said on June 23, 2009 10:47 PM:

エロ漫画やエロゲーなどでかわいい女の子が淫らな肉欲に溺れる様子をみて「こんなの現実にあるわけない」そう思った事ありませんか?それが当サイトでは現実に実現できるのです!羨ましさを憶えた2次元の中での出来事。あなたと同じように望む女の子が当サイトに集まっているのです

# 高級チェリー said on June 24, 2009 10:43 PM:

高級チェリーの夏は童貞卒業の夏です。セレブ達も童貞を卒業させたくてウズウズしながら貴方との出会いを待っています。そんなセレブ達に童貞を捧げ、貴方もハッピーライフを送ってみませんか

# 助けて〜! said on June 25, 2009 11:16 PM:

何回かメールして会える人一緒に楽しいことしょ?お給料もらったばかりだからご飯くらいならごちそうしちゃうょ♪ cha-a@docomo.ne.jp とりあえずメールくださぃ★

# セレブラブ said on June 26, 2009 10:58 PM:

セレブラブではココロとカラダに癒しを求めるセレブ達と会って頂ける男性を募集しています。セレブ女性が集まる当サイトではリッチな彼女たちからの謝礼を保証、安心して男性はお金、女性は体の欲求を満たしていただけます。無料登録は当サイトトップページからどうぞ

# SOS少女 said on June 27, 2009 11:30 PM:

家出中でお金が無く、ネットカフェを泊り歩いているSOS少女たちは、家出掲示板で泊めてくれたり遊んでくれる男性を探しています。泊めてあげたりすると彼女たちはHなお礼をしてくれるかもしれません。家出少女と遊びたい方は当サイトはどうぞ

# 出張ホスト said on June 29, 2009 11:40 PM:

マダムと甘い時間を過ごしてみませんか?性欲を持て余しているセレブたちは出張ホストサービスで男性を探し、セックスを求めているのです。ホスト希望の方なら容姿や年齢は一切不問!ご近所の女性を探して、多額の報酬をゲットしよう

# スローセックス said on June 30, 2009 11:03 PM:

楽しく、気持ちよく絶頂を味わえることで若い女性から熟女の女性まで幅広い世代で爆発的な人気がある、スローセックス。当サイトはプレイに興味がある、あるいは試してみたいけれど相手がいない…といった方の支援サイトです。当サイトでSEXパートナーを探してみませんか

# 一人エッチ said on July 1, 2009 10:55 PM:

夏真っ盛り!女の子は開放的な気分で一人エッチしたくてウズウズしてるっ!!貴方は女の子のオナ○ーを見て気分を高めてあげてネ!!もちろん、お手伝いしてもオッケーだよ!!さぁ、今すぐ女の子にアクセスしよっ

# メル友募集 said on July 2, 2009 11:45 PM:

恋することって怖くないですか?最近ちょっと臆病になってて…そういうの抜きでえっちなことしたくて… lovely-i0709@docomo.ne.jp優しい人がいたらメール待ってます☆

# 逆円助 said on July 4, 2009 12:13 AM:

さあ、今夏も新たな出会いを経験してみませんか?当サイトは円助交際の逆、つまり女性が男性を円助する『逆円助交際』を提供します。逆円交際を未経験の方でも気軽に遊べる大人のマッチングシステムです。年齢上限・容姿・経験一切問いません。男性の方は無料で登録して頂けます。貴方も新たな出会いを経験してみませんか

# 家出 said on July 4, 2009 11:33 PM:

これから家出したい少女や、現在家出中の娘とそんな娘を助けたい人を繋げるSOS掲示板です。10代、20代の女の子が家庭内の問題などでやむなく家出している子が多数書き込みしています。女の子リストを見て彼女たちにアプローチしてみませんか

# 精神年齢 said on July 6, 2009 12:04 AM:

みんなの精神年齢を測定できる、メンタル年齢チェッカーで秘められた年齢がズバリわかっちゃう!かわいいあの子も実は精神年齢オバサンということも…合コンや話のネタに一度チャレンジしてみよう

# 童貞卒業 said on July 6, 2009 11:39 PM:

童貞卒業を考えているなら、迷わずココ!今まで童貞とヤッた事がない女性というのは意外と多いものです。そんな彼女たちは一度童貞とやってみたいと考えるのは自然な事と言えるでしょう。当サイトにはそんな好奇心旺盛な女性たちが登録されています

# 素人 said on July 7, 2009 10:35 PM:

素人ホストでは日頃のストレスを発散したい、もう一度恋がしたい、そういた女性が癒しを求めて登録されています。当サイトは癒やされたい女性・寂しい女性を癒やす男性が集うカップリングサイトです

# 熟女 said on July 8, 2009 11:29 PM:

熟女だって性欲がある、貴方がもし人妻とSEXしてお金を稼ぎたいのなら、一度人妻ワイフをご利用ください。当サイトには全国各地からお金持ちのセレブたちが集まっています。女性から男性への報酬は、 最低15万円からと決めております。興味のある方は一度当サイト案内をご覧ください

# メル友募集 said on July 9, 2009 11:19 PM:

恥ずかしいけどやらしいことしたくてしょうがありません…誰か一緒にしてくれませんか?とりあえず連絡待ってます☆ cute.y.0902@docomo.ne.jp

# SOS娘 said on July 11, 2009 11:55 PM:

家出娘や一人で寂しい子が書き込むSOS娘BBSでは彼女たちと遊んであげたり泊めてあげれる、優しい人を募集しています。見返りにHをしてくれる子も多く、いろんな理由がある少女があなたの助けを待っています。

# 小向美奈子 said on July 13, 2009 1:08 AM:

話題の小向美奈子ストリップを盗撮!入念なボディチェックをすり抜けて超小型カメラで撮影した神動画がアップ中!期間限定配信の衝撃的映像を見逃すな

# 高額報酬 said on July 14, 2009 12:06 AM:

当サイトではリッチなセレブと割り切りでお付き合いしてくださる男性を募集しています。女性の性欲を満たし、高額報酬をもらって楽しく暮らしてみませんか?興味がある方はバイト感覚での1日登録もできる、安心の無料入会を今すぐどうぞ。

# mixi said on July 15, 2009 12:53 AM:

mixiで禁止された「出会い」コミュニティーが復活しているのをご存じですか?当サイトでは規制前の楽しかった頃のミクシーを再現しているという好評を頂いております。会員数も右肩上がりに増えていますので、興味のある方はぜひご覧ください

# 素人 said on July 16, 2009 12:48 AM:

癒されたい女性や、寂しい素人女性を心も体も癒してあげるお仕事をご存じですか?女性宅やホテルに行って依頼主の女性とHしてあげるだけで高額の謝礼を手に入れる事が出来るのです。興味のある方は当サイトTOPページをご覧ください

# メル友募集 said on July 16, 2009 11:53 PM:

最近してないし欲求不満です。一緒にいやらしいことしませんか?エッチには自信あるよ(笑) nyaon.chuki@docomo.ne.jp メール待ってるよ☆

# ホスト said on July 17, 2009 11:30 PM:

女性向け風俗サイトで出張デリバリーホストをしてみませんか?時給2万円以上の超高額アルバイトです。無料登録をしてあとは女性からの呼び出しを待つだけなので、お試し登録も歓迎です。興味をもたれた方は今すぐどうぞ。

# 家出 said on July 18, 2009 11:40 PM:

最近TVや雑誌で紹介されている家出掲示板では、全国各地のネットカフェ等を泊り歩いている家出娘のメッセージが多数書き込みされています。彼女たちはお金がないので掲示板で知り合った男性の家にでもすぐに泊まりに行くようです。あなたも書き込みに返事を返してみませんか

# 動物占い said on July 19, 2009 11:37 PM:

あなたの性格を、動物に例えて占っちゃいます。もしかしたらこんな動物かも!?動物占いをうまく使って、楽しい人間関係を築いてください

# 救援部 said on July 20, 2009 11:18 PM:

当サイト、救援部では無料でオ○ニー動画を見ることができます。ご近所検索機能でリアルタイムオ○ニーを見るチャンスも高く、興奮間違いなしです。また、一人Hのお手伝いを希望されるセレブ女性もあり、お手伝いいただけた方には高額謝礼をお支払いしております。

# 家出 said on July 21, 2009 11:28 PM:

家出中の女性や泊まる所が無い女性達がネットカフェなどで、飲み放題のドリンクで空腹を満たす生活を送っています。当サイトはそんな女性達をサポートしたいという人たちと困っている女性たちの為のサイトです

# セレブラブ said on July 22, 2009 11:33 PM:

セレブ女性との割り切りお付き合いで大金を稼いでみませんか?女性に癒しと快楽、男性に謝礼とお互い満たしあえる当サイト、セレブラブはあなたの登録をお待ちしております。

# 夏フェス!! said on July 23, 2009 11:28 PM:

誰か満足させてくれる人いませんか?めんどくさいこと抜きでしよっ♪ gu-gu-m@docomo.ne.jp とりあえずメールして☆

# 逆円 said on July 24, 2009 11:22 PM:

全国各地の女性会員様の性欲を満たし、割り切ったアルバイト感覚で稼げる逆円バイト。報酬は平均で1回5〜10万円となっております。興味のある方は当サイト新規無料エントリーからお早めにどうぞ

# 家出 said on July 25, 2009 11:26 PM:

家出をして不安な少女の書込みが当、家出掲示板では増えています。泊まらせてあげたり、一日遊んであげるだけで彼女たちはあなたを神と呼び、精一杯のお礼をしてくれるはずです

# 無料ゲーム said on July 26, 2009 11:03 PM:

あなたのゲーマー度を無料ゲーム感覚で測定します。15個の質問に答えるだけの簡単測定で一度遊んでみませんか?ゲームが得意な人もそうでない人もぜひどうぞ。

# 出会い系 said on July 29, 2009 3:49 AM:

実は出会い系には…関係者用入り口があるのを知っていますか?広告主やスポンサー用に用意されたIDではサクラや業者が立ち入ることが出来ないようになっているのです。当サイトでは極秘に入手した関係者用URLが公開されています

# 逆援助 said on July 29, 2009 11:48 PM:

男性はお金、女性は快楽を得る逆援助に興味はありませんか?お金を払っても性的欲求を満たしたいセレブ達との割り切り1日のお付き合いで当サイトでは大金を得ることができます。無料登録なのでアルバイト感覚でOK、詳しくはTOPページでどうぞ。

# 友達募集 said on July 30, 2009 11:07 PM:

自分のほむぺ初公開でぇす。やっと完成したのでみんなに見てもらいたくて★カキコしました。意見ある方めぇるまってまぁす。 ggg.nj@docomo.ne.jp

# 出会い said on July 31, 2009 11:47 PM:

セクース好きな女性が集まる★男性との性なる夜を求めた女性達が多数登録しております!セフレ出会いサイト☆セクフレ☆で夏休み中でヒマを持て余している女子○生から、刺激を求めるOLまでみんなまとめてオイシイ関係になっちゃおう

# 家出 said on August 1, 2009 11:18 PM:

夏休みで気軽に家出する女子○生が急増しています。しかし家出したはいいものの泊る所やお金が無い彼女たちは、掲示板などで泊めてくれる男性を探す子も多いようです。当掲示板にも夏休みに入ってから通常の3倍以上のメッセージが寄せられています

# チェッカー said on August 3, 2009 12:16 AM:

あなたの真のH度を診断できるHチェッカー!コンパや飲み会で盛り上がること間違いなしのおもしろツールでみんなと盛り上がろう

# 逆円 said on August 3, 2009 10:42 PM:

今夏も新たな出会いを経験してみませんか?当サイトは円交の逆、つまり女性が男性を円助する『逆円交際』を提供します。未経験の方でも気軽に遊べる大人のマッチングシステムです。年齢上限・容姿・経験一切問いません。男性の方は無料で登録して頂けます。貴方も新たな出会いを経験してみませんか

# 人妻 said on August 4, 2009 11:01 PM:

今最もアツイバイトは人妻とのセフレ契約です。当サイトではお金を払ってでもセフレがほしい人妻が集まり、男性会員様との逆援生活を待っています。当サイトで欲求不満の女性との出会いをしてみませんか

# 素人 said on August 6, 2009 12:02 AM:

素人ホストでは、男性のテクニック次第で女性会員様から高額な謝礼がもらえます。欲求不満な人妻や、男性と出会いが無い女性達が当サイトで男性を求めていらっしゃいます。興味のある方はTOPページからどうぞ

# 友達募集中 said on August 6, 2009 11:07 PM:

さゆのプロフィールが完成しましたぁ。記念すべき初プロフをネットに公開してみました。ドキドキしてるので優しい感想メールしてくれたら心和むかもでぇす po.tomoe.oq@docomo.ne.jp

# 家出 said on August 8, 2009 11:36 PM:

カワイイ子ほど家出してあそんでみたくなるようです。家出掲示板でそのような子と出会ってみませんか?彼女たちは夕食をおごってあげるだけでお礼にHなご奉仕をしてくれちゃったりします

# 逆援助 said on August 10, 2009 11:10 PM:

出会ぃも今は逆援助!オンナがオトコを買う時代になりました。当サイトでは逆援希望のセレブ女性が男性を自由に選べるシステムを採用しています。経済的に成功を収めた女性ほど金銭面は豊かですが愛に飢えているのです。興味のある方はどうぞ

# 出会い said on August 11, 2009 10:41 PM:

即ハメセレブは完全無料でご利用できる出会いコミュニティです。今までにない実績で、あなたの希望に合った人をお探しします。毎月考えられない豪華なイベントを開催しているので出会いを保障します

# 救援部 said on August 13, 2009 4:02 AM:

夏真っ盛り!女の子は開放的な気分で一人Hしたくてウズウズしてるっ!貴方は女の子のオ○ニーを見て気分を高めてあげてネ!もちろん、お手伝いしてもオッケーだよ!さぁ、今すぐ救援部にアクセスしよっ

# メル友 said on August 14, 2009 4:26 AM:

プロフ見て興味ある方は連絡ください。基本的には携帯依存症なぐらい携帯いじるのとかメールするの好きなのでまずはメアドから交換しましょう。仲良くなったら電話もおっけーなんでよろしくo.natyu.natyu.o@docomo.ne.jp

# 出会い said on August 15, 2009 4:06 AM:

大好評の逆ナンイベントが毎週開催決定!素敵な出会いのきっかけ探し・アイナビにきませんか?積極的な出会いを求める人達なら無料参加OK!あなたもほんの少しの勇気で素敵な彼氏・彼女をGETしちゃおう!

# 家出 said on August 16, 2009 4:15 AM:

夏休みで家出する女の子が急増しています。最初はマンガ喫茶やネットカフェで過ごすことが多いようですが、すぐにお小遣いが無くなり家出掲示板で泊めてくれたり遊んでくれる男性を探す子が多いようです。当サイトはそんな女の子達をサポートしたいという人たちと困っている女性たちの為のサイトです

# 玉の輿度チェッカー said on August 17, 2009 6:21 AM:

当サイトは、みんなの「玉の輿度」をチェックする性格診断のサイトです。ホントのあなたをズバリ分析しちゃいます!玉の輿度チェッカーの診断結果には、期待以上の意外な結果があるかも

# セレブラブ said on August 20, 2009 12:42 AM:

毎月10万円を最低ラインとする謝礼を得て、セレブ女性に癒しを与える仕事があります。無料登録した後はメールアプローチを待つだけでもOK、あなたもセレブラブで欲求を満たしあう関係を作ってみませんか

# ほむぺ完成記念 said on August 20, 2009 11:21 PM:

よーやくプロフ持ちになれました。私の事気になった方がいましたら気軽にメールください。恋バナとか好きなんでよろしくでぇす。zuttozuttoissyodayo@docomo.ne.jp

# 出張ホスト said on August 21, 2009 11:31 PM:

女性会員様増加につき、当サイトの出張ホストが不足中です。女性の自宅やホテルに出向き、欲望を満たすお手伝いをしてくれる男性アルバイトをただいま募集していますので、興味のある方はTOPページから無料登録をお願いいたします

# 家出 said on August 22, 2009 11:51 PM:

最近様々なメディアで紹介されている家出掲示板では、全国各地のネットカフェ等を泊り歩いている家出少女のメッセージが多数書き込みされています。彼女たちはお金がないので掲示板で知り合った男性とすぐに遊びに行くようです。あなたも書き込みに返事を返してみませんか

# モテる度チェッカー said on August 24, 2009 12:36 AM:

あなたのモテ度数を診断できる、モテる度チェッカー!日頃モテモテでリア充のあなたもそうでないヒキニートの貴方も隠されたモテスキルを測定して今以上にモッテモテになること間違いなし

# 救援部 said on August 24, 2009 11:21 PM:

オ○ニーライフのお手伝い、救援部でHな見せたがり女性からエロ写メ、ムービーをゲットしよう!近所の女の子なら実際に合ってHな事ができちゃうかも!?夏で開放的になっている女の子と遊んじゃおう

# 逆援助 said on August 25, 2009 11:17 PM:

メル友募集のあそび場「ラブフリー」はみんなの出逢いを応援する全国版の逆援助コミュニティーです!女の子と真剣にお付き合いしたい方も、複数の女性と戯れたい方も今すぐ無料登録からどうぞ

# 倶楽部 said on August 26, 2009 10:25 PM:

簡単にお小遣い稼ぎをしたい方必見、当サイト逆¥倶楽部では無料登録して女性の性の欲求に応えるだけのアルバイトです。初心者でもすぐに高収入の逆¥交際に興味をもたれた方はTOPページまでどうぞ。

# プロフ公開 said on August 27, 2009 11:14 PM:

プロフ作りました。興味ある方連絡まってま〜す。メアドを乗せておくので連絡ください。色んな人の色んな話聞きたい感じですのでヨロシクhappy-my-life-.-@docomo.ne.jp

Leave a Comment

(required) 
(optional)
(required) 

  
Enter Code Here: Required

Search

This Blog

Syndication

Page view tracker