Craig Stuntz

22,252
Reputation
1693 views

Registered User

Name Craig Stuntz
Member for 1 year
Seen 2 days ago
Website
Location Columbus, OH
Age
I'll be giving a presentation on How to Think Like the ADO.NET Entity Framework (and why you might want to bother learning to do so in the first place) at the free, online CodeRage conference in September.
6h
awarded  Mortarboard
2d
accepted Getting app root in MVC controller constructor
Dec
3
accepted EF 1.0 during creation
Dec
3
comment Master / Detail with Entity Framework
You were probably using > 1 context (FormsEntries instance), then. I suggest using only one at a time whenever possible. Makes things much simpler.
Dec
3
accepted FIREBIRD BLR DECODER
Dec
3
revised Database Design for Filtering Database
retag
Dec
3
answered FIREBIRD BLR DECODER
Dec
3
answered Sort Date Column in jqgrid
Dec
3
answered Master / Detail with Entity Framework
Dec
2
answered EF 1.0 during creation
Dec
2
comment Mapping POCO to Entity in Entity Framework
You can trace SQL with SQL Profiler and don't need to modify the source if you do it that way.
Dec
2
accepted C# OfType() -clarification
Dec
2
comment Mapping POCO to Entity in Entity Framework
It works correctly for me, so if you'd like help on that you need to give more details. You can blame the tool if you like, but it won't fix the problem. How about a SQL trace instead?
Dec
2
answered C# OfType() -clarification
Dec
2
revised Change Entity framework database schema at runtime
schema
Dec
2
revised Change Entity framework database schema at runtime
Clarify DB vs. schema
Dec
2
comment Change Entity framework database schema at runtime
If the schemata are in the same DB, you can't switch these at runtime (except with EF 4 code-only). This is because two identically-named and structured tables in two different schemata are considered entirely different tables.
Dec
2
revised Prefix all columns in T-SQL statement
retag
Dec
2
comment Mapping POCO to Entity in Entity Framework
You make the stub, attach it, and add it ot the collection property.
Dec
2
comment EF 1.0 during creation
Again, what happens if you force loading of songs before calling Add? aCommand.Songs.Load(); aCommand.Songs.Add(song);
Dec
2
accepted LINQ to Entities - “Including” a complex object while also grouping
Dec
2
answered ADO.NET Entity Model + DataGridView: How to write changes to database
Dec
2
answered LINQ to Entities - “Including” a complex object while also grouping
Dec
2
comment Change Entity framework database schema at runtime
OK, but that's an entirely different question than what you asked. Why can't the test and production DBs (presuming they're actually different) use the same schema name?
Dec
2
comment Mapping POCO to Entity in Entity Framework
Victor: Use stubs. See: blogs.msdn.com/alexj/archive/…
Dec
2
comment Change Entity framework database schema at runtime
testfoo sounds like a schema name, not a database name. DB name would look something like dbname..schemaname.table. Do your two DBs have different schemas?
Dec
2
accepted Mapping POCO to Entity in Entity Framework
Dec
2
answered Mapping POCO to Entity in Entity Framework
Dec
2
revised iterating over linq entity column
format code
Dec
2
answered Getting app root in MVC controller constructor
Dec
2
comment EF 1.0 during creation
I think you're hitting a corner case with lazy loading. What happens if you try looking at aCommand.songs.Count() before doing aCommand.songs.Add? My theory: Doing Add normally would cause the new Song to become attached. But if you do it before songs is (lazily) loaded, that doesn't happen.
Dec
2
accepted Pass Data Arrays into jqgrid table
Dec
1
comment EF 1.0 during creation
Is the line you show (myCommand.Songs.Add) really ChansonWrapper.cs:line 115? Can you show all of ChansonWrapper.AttachEntities and highlight line 115?
Dec
1
answered Change Entity framework database schema at runtime
Dec
1
accepted JQGrid URL Sometimes including controller in call
Dec
1
comment EF-Reference.Load() - There is already an open DataReader
OK, then you need to ask a different question. :)
Dec
1
answered organizing admin related controllers and viewpages
Dec
1
answered JQGrid URL Sometimes including controller in call
Dec
1
comment EF-Reference.Load() - There is already an open DataReader
dynback, MARS is a SQL Server issue only. The EF Provider for SQL Server requires MARS. MySQL has its own provider which may or may not require specific MySQL features to be used. But MySQL requirements have nothing to do with MARS, and the requirements imposed by the SQL Server EF provider have nothing to do with MySQL; they're completely separate issues.
Dec
1
accepted EF-Reference.Load() - There is already an open DataReader
Dec
1
answered EF-Reference.Load() - There is already an open DataReader
Dec
1
accepted SaveChanges() problem
Dec
1
comment Can Entity Framework map two associations into a single navigation?
This seems like a bad idea. If you added an entity to the proposed, merged collection, how would the EF know in which of your two collections to put it?
Dec
1
answered SaveChanges() problem
Dec
1
comment Delphi 6 stack trace
Lieven, it's the JCL, not the JVCL, which has stack tracing.
Dec
1
comment Delphi 6 stack trace
We use JCL. Works very well.
Dec
1
revised ASP.NET MVC - test the controller returning different views depending on action method logic
fix comment
Dec
1
accepted ASP.NET MVC - test the controller returning different views depending on action method logic
Nov
30
comment Where to store logged user information on ASP.NET MVC using Forms Authentication?
Storing authentication-related info in session is dangerous. Session is decoupled from membership. Google "ASP.NET session stealing".
Nov
30
revised Where to store logged user information on ASP.NET MVC using Forms Authentication?
fix link