New Post: Source version mismatch with download version
I downloaded v3.3 using the Download button on the home page tonight. After reviewing it, I decided to clone the source (Git) to my local workstation to include it into my project(s) that way rather...
View ArticleNew Post: Where did the MVC controller template go?
I was looking for the code template to install into my project's ~/CodeTemplates folder and unable to find it. The only one found was...
View ArticleNew Post: How to add the project() (mapper) option to this framework to...
Hi, Thanks for your time, ill give it a try. Many Many Thanks.
View ArticleNew Post: No parameterless constructor defined for this object. - WebForms
Here's what I have. in the global.asax protected void Application_Start(object sender, EventArgs e) {IUnityContainer container = Application.GetContainer(); Bootstrapper.Configure(container); } public...
View ArticleNew Post: How to add the project() (mapper) option to this framework to...
I Initially started using AutoMapper to "autogen" my DTO's or ViewModels, however, something you should be aware of in using AutoMapper for DAL ccode -...
View ArticleNew Post: The source IQueryable doesn't implement IDbAsyncEnumerable
public async static Task<List<Book>> FindByTextAsync(this IRepositoryAsync<Book> repository, string text) { return await repository.FindByTextInternal(text).ToListAsync(); } public...
View ArticleNew Post: No parameterless constructor defined for this object. - WebForms
Got it resolved. Everything done thus far was correct, I just had to this (below) to the private IAccountService accountService; [Dependency] public IAccountService AccountService { get { return...
View ArticleNew Post: how to select an inserted entity before calling savechanges
Hello, I'm currently using this generic repository implementation and I really like it, however, I found a little issue which I would to know if is it by design or if I might be doing something wrong,...
View ArticleCreated Unassigned: Can't select an entity not committed [1224]
Hello, I found a small issue which I would to know if is it by design or if I might be doing something wrong, basically I have a code a little bit like this:```public class CA { protected IUnitOfWork...
View ArticleNew Post: How to add the project() (mapper) option to this framework to...
Hi lelong37 and elhaix, thanks a lot for your responses. elhaix, I tried what you suggest and it feels so much better than using automapper, at first got version 1, but the author add a longCammelCase...
View ArticleNew Post: How to add the project() (mapper) option to this framework to...
Hi again, the problem I wrote about i forgot to write that only happens in the public static class PedidoRepository //Linqpad var pedidos = pediRepo.Queryable() .Where(w => w.Estado !=...
View ArticleReviewed: v3.3 (Jun 01, 2014)
Rated 5 Stars (out of 5) - Very good work. Please keep improving this framework.
View ArticleNew Post: AddOrUpdate and Merge.
Hi, Is there any one that has implemented this Entity Framework goodness into this framework? or are they already include and I don't know how to use them? I use AddOrUpdate in my seed Method, is quite...
View ArticleReviewed: v3.3 (giu 02, 2014)
Rated 5 Stars (out of 5) - great job! can you add support to optimistic concurrency?
View ArticleNew Post: Regarding calling of BeginTransaction()
Hi All, Can anyone help me when I need to initiate the BeginTransaction(). I have not seen any samples helping in this regard. And also, can anyone let me know how a Parent-Child insert works. I have a...
View ArticleNew Post: Regarding calling of BeginTransaction()
Hi, Srini, Regarding calling of BeginTransaction you have a sample of code in https://genericunitofworkandrepositories.codeplex.com/wikipage?title=Quick%20Samples%20in%20LINQPadvar productRepository =...
View ArticleCreated Unassigned: Many-to-many not saving [1225]
I have created a many to many relationship between 3 tables (1 containing only the 2 foreign keys which is both primary keys).In EF of course the link table does not show up as an entity which is as...
View ArticleCommented Unassigned: Many-to-many not saving [1225]
I have created a many to many relationship between 3 tables (1 containing only the 2 foreign keys which is both primary keys).In EF of course the link table does not show up as an entity which is as...
View ArticleNew Post: Dynamic Ordering
I have a requirement where I would like to be able to dynamically define the query's OrderBy clause. For example, the user interface might allow the user to select one or more field names and whether...
View ArticleCommented Unassigned: Can't select an entity not committed [1224]
Hello, I found a small issue which I would to know if is it by design or if I might be doing something wrong, basically I have a code a little bit like this:```public class CA { protected IUnitOfWork...
View Article