summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorm90 <frederik.ring@gmail.com>2014-10-07 20:38:14 +0200
committerm90 <frederik.ring@gmail.com>2014-10-07 20:38:14 +0200
commit6ce6aa7b548151371bcc31f00925aa890a4356e7 (patch)
tree9cfce52a94ad60cbd9ae925d1dda93413ee73375
parentd786c94f8408b2fb2f0a0b39c7c5cc8ec77e0808 (diff)
fix typo -> re(s)pository pattern
-rw-r--r--csharp.html.markdown6
1 files changed, 3 insertions, 3 deletions
diff --git a/csharp.html.markdown b/csharp.html.markdown
index 136f6c50..f6708590 100644
--- a/csharp.html.markdown
+++ b/csharp.html.markdown
@@ -508,7 +508,7 @@ on a new line! ""Wow!"", the masses cried";
// LINQ - maps a store to IQueryable<T> objects, with delayed execution
// e.g. LinqToSql - maps to a database, LinqToXml maps to an xml document
- var db = new BikeRespository();
+ var db = new BikeRepository();
// execution is delayed, which is great when querying a database
var filter = db.Bikes.Where(b => b.HasTassles); // no query run
@@ -767,9 +767,9 @@ on a new line! ""Wow!"", the masses cried";
/// EntityFramework Code First is awesome (similar to Ruby's ActiveRecord, but bidirectional)
/// http://msdn.microsoft.com/en-us/data/jj193542.aspx
/// </summary>
- public class BikeRespository : DbSet
+ public class BikeRepository : DbSet
{
- public BikeRespository()
+ public BikeRepository()
: base()
{
}