Skip to content

Commit dcc496e

Browse files
committed
Site updated at 2013-11-07 21:46:40 UTC
1 parent 77754fb commit dcc496e

File tree

40 files changed

+1156
-405
lines changed

40 files changed

+1156
-405
lines changed

atom.xml

Lines changed: 24 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<title><![CDATA[The fastest and smoothest way to good architecture]]></title>
55
<link href="http://hwyfwk.com/atom.xml" rel="self"/>
66
<link href="http://hwyfwk.com/"/>
7-
<updated>2013-11-07T15:29:12-06:00</updated>
7+
<updated>2013-11-07T15:46:32-06:00</updated>
88
<id>http://hwyfwk.com/</id>
99
<author>
1010
<name><![CDATA[Tim Rayburn & Devlin Liles]]></name>
@@ -13,6 +13,29 @@
1313
<generator uri="http://octopress.org/">Octopress</generator>
1414

1515

16+
<entry>
17+
<title type="html"><![CDATA[Does Highway.Data work with Database First?]]></title>
18+
<link href="http://hwyfwk.com/blog/2013/11/07/does-highway-dot-data-work-with-database-first/"/>
19+
<updated>2013-11-07T15:32:00-06:00</updated>
20+
<id>http://hwyfwk.com/blog/2013/11/07/does-highway-dot-data-work-with-database-first</id>
21+
<content type="html"><![CDATA[<h2>Short Answer</h2>
22+
23+
<p>Yes, sort of.</p>
24+
25+
<h2>Long Answer</h2>
26+
27+
<p>Inject-able mappings and context configuration are not offered, for obvious reasons. Otherwise in this version all other features are supported.</p>
28+
29+
<h2>A word about the future</h2>
30+
31+
<p>In future versions of Highway.Data, it is highly likely that features will be introduced that are not compatible with Database First. How we handle this will be decided later, but this is not a feature which we are committed to fully supporting, it is provided as a <strong>basic</strong> scenario.</p>
32+
33+
<h3>Entity Framework Power Tools</h3>
34+
35+
<p>As a quick word, most people who have chosen Database First, did so because they believed that Code First would require that their classes create, or otherwise control their database. This is not the case. <a href="http://visualstudiogallery.msdn.microsoft.com/72a60b14-1581-4b9b-89f2-846072eff19d">The Entity Framework team has for some time shipped a set of Power Tools</a> which allow the reverse engineering of existing database into Code First entities and mappings, which are then fully compatible with Highway.Data. We encourage those currently using Database First to migrate using these tools to a Code First solution.</p>
36+
]]></content>
37+
</entry>
38+
1639
<entry>
1740
<title type="html"><![CDATA[What should I register with my IoC container?]]></title>
1841
<link href="http://hwyfwk.com/blog/2013/11/07/what-should-i-register-with-my-ioc-container/"/>
@@ -2959,27 +2982,6 @@ The <a href="http://hwyfwk.com/blog/2013/10/19/understanding-the-patterns/">Repo
29592982
<li>HighwayDataInstaller &ndash; Is the configuration and registrations for using Highway.Data.EntityFramework for your database. It will be covered in more detail when we discuss Data Access.</li>
29602983
</ul>
29612984
2962-
]]></content>
2963-
</entry>
2964-
2965-
<entry>
2966-
<title type="html"><![CDATA[Highway.Pavement v0.3]]></title>
2967-
<link href="http://hwyfwk.com/blog/2013/10/05/highway-dot-pavement-v0-dot-3/"/>
2968-
<updated>2013-10-05T12:22:00-05:00</updated>
2969-
<id>http://hwyfwk.com/blog/2013/10/05/highway-dot-pavement-v0-dot-3</id>
2970-
<content type="html"><![CDATA[<h1>Changes</h1>
2971-
2972-
<ul>
2973-
<li>Adding a strong name key to the Highway.Pavement assembly so it can be referenced from signed assemblies.</li>
2974-
</ul>
2975-
2976-
2977-
<h1>Notes</h1>
2978-
2979-
<ul>
2980-
<li>Thank you to friend of the project Michael Dudley for pointing out this oversight.</li>
2981-
</ul>
2982-
29832985
]]></content>
29842986
</entry>
29852987

Lines changed: 270 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,270 @@
1+
2+
<!DOCTYPE html>
3+
<!--[if IEMobile 7 ]><html class="no-js iem7"><![endif]-->
4+
<!--[if lt IE 9]><html class="no-js lte-ie8"><![endif]-->
5+
<!--[if (gt IE 8)|(gt IEMobile 7)|!(IEMobile)|!(IE)]><!--><html class="no-js" lang="en"><!--<![endif]-->
6+
<head>
7+
<meta charset="utf-8">
8+
<title>Does Highway.Data work with Database First? - The fastest and smoothest way to good architecture</title>
9+
<meta name="author" content="Tim Rayburn & Devlin Liles">
10+
11+
12+
<meta name="description" content="">
13+
14+
<meta name="keywords" content="">
15+
16+
<!-- http://t.co/dKP3o1e -->
17+
<meta name="HandheldFriendly" content="True">
18+
<meta name="MobileOptimized" content="320">
19+
<meta name="viewport" content="width=device-width, initial-scale=1">
20+
21+
22+
<link rel="canonical" href="http://hwyfwk.com/blog/2013/11/07/does-highway-dot-data-work-with-database-first">
23+
<link href="/favicon.png" rel="icon">
24+
<link href='http://fonts.googleapis.com/css?family=Quicksand:300,400' rel='stylesheet' type='text/css'>
25+
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,300' rel='stylesheet' type='text/css'>
26+
<link href="/stylesheets/screen.css" media="screen, projection" rel="stylesheet" type="text/css">
27+
<link href="/atom.xml" rel="alternate" title="The fastest and smoothest way to good architecture" type="application/atom+xml">
28+
<script src="/js/jquery.js"></script>
29+
<script src="/js/bootstrap-collapse.js"></script>
30+
<script src="/js/modernizr-2.0.js"></script>
31+
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
32+
<script>!window.jQuery && document.write(unescape('%3Cscript src="./javascripts/lib/jquery.min.js"%3E%3C/script%3E'))</script>
33+
<script src="/js/octopress.js" type="text/javascript"></script>
34+
<!--Fonts from Google"s Web font directory at http://google.com/webfonts -->
35+
<link href="http://fonts.googleapis.com/css?family=PT+Serif:regular,italic,bold,bolditalic" rel="stylesheet" type="text/css">
36+
<link href="http://fonts.googleapis.com/css?family=PT+Sans:regular,italic,bold,bolditalic" rel="stylesheet" type="text/css">
37+
38+
39+
40+
</head>
41+
42+
<body >
43+
<div class="navbar navbar-inverse navbar-static-top">
44+
<div class="navbar-inner">
45+
<div class="container">
46+
<a class="btn btn-navbar" data-toggle="collapse" data-target=".navbar-responsive-collapse">
47+
<span class="fui-menu-24"></span>
48+
</a>
49+
<div class="nav-collapse collapse navbar-responsive-collapse" style="height:0;">
50+
<ul class="nav">
51+
52+
<li ><a href="/index.html">Home</a></li>
53+
54+
<li ><a href="/team/index.html">Team</a></li>
55+
56+
<li ><a href="/projects/index.html">Projects</a></li>
57+
58+
<li ><a href="/license.html">License</a></li>
59+
60+
<li ><a href="/releases.html">Releases</a></li>
61+
62+
<li ><a href="/contribute.html">Contribute</a></li>
63+
64+
<li ><a href="/support.html">Support</a></li>
65+
66+
<li ><a href="/faq.html">FAQs</a></li>
67+
68+
</ul>
69+
70+
<ul class="nav pull-right">
71+
72+
<li><a href="http://github.com/HighwayFramework" title="Github Profile"><i class="icon-github-sign social-navbar"></i></a></li>
73+
74+
75+
76+
<li><a href="http://twitter.com/HwyFwk" title="Twitter Profile"><i class="icon-twitter-sign social-navbar"></i></a></li>
77+
78+
79+
80+
81+
<li><a href="mailto:[email protected]" title="Email"><i class="icon-envelope-alt social-navbar"></i></a></li>
82+
83+
</ul>
84+
85+
</div>
86+
</div>
87+
</div>
88+
</div>
89+
<div class="container" id="main">
90+
<div class="span12">
91+
<div class="row-fluid">
92+
<div id="content">
93+
<div>
94+
<article class="hentry" role="article">
95+
96+
97+
<header>
98+
<div class="jumbotron">
99+
Does Highway.Data Work With Database First?
100+
<h5>
101+
102+
103+
104+
105+
106+
107+
108+
109+
110+
111+
112+
<i class="icon-calendar-empty"></i> <time datetime="2013-11-07T15:32:00-06:00" pubdate data-updated="true">Nov 7<span>th</span>, 2013</time></h5>
113+
</div>
114+
</header>
115+
<div class="row-fluid">
116+
<div class="span12">
117+
<h2>Short Answer</h2>
118+
119+
<p>Yes, sort of.</p>
120+
121+
<h2>Long Answer</h2>
122+
123+
<p>Inject-able mappings and context configuration are not offered, for obvious reasons. Otherwise in this version all other features are supported.</p>
124+
125+
<h2>A word about the future</h2>
126+
127+
<p>In future versions of Highway.Data, it is highly likely that features will be introduced that are not compatible with Database First. How we handle this will be decided later, but this is not a feature which we are committed to fully supporting, it is provided as a <strong>basic</strong> scenario.</p>
128+
129+
<h3>Entity Framework Power Tools</h3>
130+
131+
<p>As a quick word, most people who have chosen Database First, did so because they believed that Code First would require that their classes create, or otherwise control their database. This is not the case. <a href="http://visualstudiogallery.msdn.microsoft.com/72a60b14-1581-4b9b-89f2-846072eff19d">The Entity Framework team has for some time shipped a set of Power Tools</a> which allow the reverse engineering of existing database into Code First entities and mappings, which are then fully compatible with Highway.Data. We encourage those currently using Database First to migrate using these tools to a Code First solution.</p>
132+
133+
</div>
134+
</div>
135+
136+
137+
138+
<footer>
139+
<hr>
140+
141+
<div class="row-fluid">
142+
143+
<div class="span6">
144+
<p class="meta">
145+
146+
147+
148+
149+
150+
<a href="/blog/categories/data/"><span class="badge">data</span></a>
151+
152+
<a href="/blog/categories/feature/"><span class="badge">feature</span></a>
153+
154+
<a href="/blog/categories/insurance/"><span class="badge">insurance</span></a>
155+
156+
<a href="/blog/categories/onramp-mvc/"><span class="badge">onramp-mvc</span></a>
157+
158+
<a href="/blog/categories/onramp-services/"><span class="badge">onramp-services</span></a>
159+
160+
<a href="/blog/categories/onramper/"><span class="badge">onramper</span></a>
161+
162+
<a href="/blog/categories/pavement/"><span class="badge">pavement</span></a>
163+
164+
<a href="/blog/categories/release/"><span class="badge">release</span></a>
165+
166+
<a href="/blog/categories/roadcrew/"><span class="badge">roadcrew</span></a>
167+
168+
169+
170+
171+
</p>
172+
</div>
173+
174+
<div class="span6 social-sharing">
175+
<div class="sharing">
176+
<div class="addthis_toolbox addthis_default_style ">
177+
178+
<a class="addthis_button_facebook_like" fb:like:layout="button_count"></a>
179+
180+
181+
<a class="addthis_button_tweet"></a>
182+
183+
184+
<a class="addthis_counter addthis_pill_style"></a>
185+
</div>
186+
<script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js#pubid="></script>
187+
</div>
188+
189+
</div>
190+
191+
192+
</div>
193+
194+
195+
</footer>
196+
</article>
197+
198+
<section>
199+
<h1>Comments</h1>
200+
<div id="disqus_thread" aria-live="polite"><noscript>Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
201+
</div>
202+
</section>
203+
204+
</div>
205+
206+
207+
208+
</div>
209+
</div>
210+
<div class="row-fluid">
211+
<footer class="footer-page" role="contentinfo">
212+
<p>
213+
Copyright &copy; 2013 - Tim Rayburn & Devlin Liles -
214+
<span class="credit">Powered by <a href="http://octopress.org">Octopress</a></span> - Theme by <a href="http://alexgaribay.com">Alex Garibay</a>
215+
</p>
216+
217+
218+
</footer>
219+
</div>
220+
</div>
221+
</div>
222+
223+
224+
<script type="text/javascript">
225+
var disqus_shortname = 'highwayframework';
226+
227+
228+
// var disqus_developer = 1;
229+
var disqus_identifier = 'http://hwyfwk.com/blog/2013/11/07/does-highway-dot-data-work-with-database-first/';
230+
var disqus_url = 'http://hwyfwk.com/blog/2013/11/07/does-highway-dot-data-work-with-database-first/';
231+
var disqus_script = 'embed.js';
232+
233+
(function () {
234+
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
235+
dsq.src = 'http://' + disqus_shortname + '.disqus.com/' + disqus_script;
236+
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
237+
}());
238+
</script>
239+
240+
241+
242+
<div id="fb-root"></div>
243+
<script>(function(d, s, id) {
244+
var js, fjs = d.getElementsByTagName(s)[0];
245+
if (d.getElementById(id)) {return;}
246+
js = d.createElement(s); js.id = id; js.async = true;
247+
js.src = "//connect.facebook.net/en_US/all.js#appId=212934732101925&xfbml=1";
248+
fjs.parentNode.insertBefore(js, fjs);
249+
}(document, 'script', 'facebook-jssdk'));</script>
250+
251+
252+
253+
254+
255+
<script type="text/javascript">
256+
(function(){
257+
var twitterWidgets = document.createElement('script');
258+
twitterWidgets.type = 'text/javascript';
259+
twitterWidgets.async = true;
260+
twitterWidgets.src = 'http://platform.twitter.com/widgets.js';
261+
document.getElementsByTagName('head')[0].appendChild(twitterWidgets);
262+
})();
263+
</script>
264+
265+
266+
267+
268+
269+
</body>
270+
</html>

blog/archives/index.html

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,44 @@ <h1>2013</h1>
116116
<div class="span11">
117117

118118

119+
<article>
120+
121+
<div class="row-fluid">
122+
<div class="span1">
123+
<h1 class="date-time"><time datetime="2013-11-07T15:32:00-06:00" pubdate><span class='month'>Nov</span> <span class='day'>07</span><span class='year'><!--2013--></span></time></h1>
124+
</div>
125+
<div class="span10">
126+
<h1><a href="/blog/2013/11/07/does-highway-dot-data-work-with-database-first/">Does Highway.Data work with Database First?</a></h1>
127+
</div>
128+
</div>
129+
130+
<div class="row-fluid">
131+
<div class="span1">
132+
</div>
133+
<div class="span10">
134+
135+
136+
<footer class="archive">
137+
<span class="categories">posted in <a class='category' href='/blog/categories/data/'>data</a>, <a class='category' href='/blog/categories/feature/'>feature</a>, <a class='category' href='/blog/categories/insurance/'>insurance</a>, <a class='category' href='/blog/categories/onramp-mvc/'>onramp-mvc</a>, <a class='category' href='/blog/categories/onramp-services/'>onramp-services</a>, <a class='category' href='/blog/categories/onramper/'>onramper</a>, <a class='category' href='/blog/categories/pavement/'>pavement</a>, <a class='category' href='/blog/categories/release/'>release</a>, <a class='category' href='/blog/categories/roadcrew/'>roadcrew</a></span>
138+
</footer>
139+
140+
</div>
141+
</div>
142+
143+
144+
</article>
145+
</div>
146+
</div>
147+
148+
149+
<div class="row-fluid">
150+
<div class="span1">
151+
152+
</div>
153+
154+
<div class="span11 border-top">
155+
156+
119157
<article>
120158

121159
<div class="row-fluid">

0 commit comments

Comments
 (0)