Commented Issue: Loading the include file 'EF6.Utility.CS.ttinclude' returned...
I'm entering this as a new issue as you marked the [previous entry of this bug](https://efreversepoco.codeplex.com/workitem/145) as Resolved.I have indeed confirmed that I followed all the steps of...
View ArticleCommented Issue: Loading the include file 'EF6.Utility.CS.ttinclude' returned...
I'm entering this as a new issue as you marked the [previous entry of this bug](https://efreversepoco.codeplex.com/workitem/145) as Resolved.I have indeed confirmed that I followed all the steps of...
View ArticleCommented Issue: Loading the include file 'EF6.Utility.CS.ttinclude' returned...
I'm entering this as a new issue as you marked the [previous entry of this bug](https://efreversepoco.codeplex.com/workitem/145) as Resolved.I have indeed confirmed that I followed all the steps of...
View ArticleNew Post: accessing Database.Log from IDBContext
Hi, I was working with concrete DbContext. but to introduce testing I change it IDbContext but by doing that I have no more access this.dbContext.Database.Log = s => logger.Info(s); Database.Log. is...
View ArticleNew Post: accessing Database.Log from IDBContext
I see Database property as something too specific to be in the generic unit of work interface IDbContext, so if you really need to access it, you just cast it to...
View ArticleNew Post: accessing Database.Log from IDBContext
Thanks for this. I tried to use this. ((DbContext)this.dbContext).Database.Log .... didnt work. because I was passing FakeDbContext and it threw an exception 'System.InvalidCastException' . I will look...
View ArticleNew Post: accessing Database.Log from IDBContext
but even if you cast to FakeDbContext probably DataBase not Database.Log are implemented, actually I don't get your point, do you want to add logging while unit testing?another way is to configure the...
View ArticleNew Post: Can user defined table types for stored procedures be supported ?
Fully understand. It will definately be possible, see this stackoverflow post. Can you add this as an Issue, and I will get round to it at some point. :-) For now, you will have to code something...
View ArticleNew Post: Can user defined table types for stored procedures be supported ?
SimonHughes wrote: For now, you will have to code something manually for that stored procedure. Yes, I have done that : public class p_UpdateTrend_Param : DataTable { public p_UpdateTrend_Param() {...
View ArticleCreated Unassigned: user defined table types for stored procedures are not...
see discussion at :https://efreversepoco.codeplex.com/discussions/645780
View ArticleCommented Unassigned: uppercase reserved words in poco and stored procedures...
For some reason the database I just started to work with has reserved words all as parameterslike CREATE PROC dbo.StupidStoredProcedureParams@ReqType varchar(25),@Dept smallint, __@Class...
View ArticleSource code checked in, #111736476dc7
Case 127. Fix bug where @ was removed from stored proc C# reserved word parameter. Thanks to pinger.
View ArticleEdited Issue: uppercase reserved words in poco and stored procedures [127]
For some reason the database I just started to work with has reserved words all as parameterslike CREATE PROC dbo.StupidStoredProcedureParams@ReqType varchar(25),@Dept smallint, __@Class...
View ArticleCommented Issue: uppercase reserved words in poco and stored procedures [127]
For some reason the database I just started to work with has reserved words all as parameterslike CREATE PROC dbo.StupidStoredProcedureParams@ReqType varchar(25),@Dept smallint, __@Class...
View ArticleSource code checked in, #e6d3ad0c55ff
Case 144. Code clean up and bug fix. Thanks to jeffinflection.
View ArticleEdited Issue: BUG: Navigation Properties not generated [144]
If you have a table def whose primary key col has the same name as the table, navigation properties will not be generated.The problematic code is lines 2039, 2043 in...
View ArticleCommented Issue: BUG: Navigation Properties not generated [144]
If you have a table def whose primary key col has the same name as the table, navigation properties will not be generated.The problematic code is lines 2039, 2043 in...
View ArticleSource code checked in, #a90739c6b181
Better handling for property name clashes in columns. E.g. [user_id], [UserId], [user id] would all map to UserId
View Article