Repository Is Nothing But Added In The Container Later (correctly) (using Unity, Repositories) In ASP.Net MVC 3?

Sep 1, 2011

I have a "MenuService", which uses an "MenuRepository".When the MenuService is created, it loads correctly with the MenuRepository.Then it wants to save it in the UnityControllerFactory, but the MenuRepository in the MenuService is Nothing then (it wasn't before).Some additional info:I'm using the Unity and Repository pattern.The problem happens with a partial view (for a menu), which i have included in the "HomeController", it could be relevant information, so i included this, just in case:

Function Menu() As ActionResult
Return PartialView("~Views/Shared/_Menu.vbhtml", _MenuService.GetAllMenuItems)
End Function

Also, my partial "menu" view is like this:

~/_Menu.vbhtml
@ModelType IEnumerable(Of FacturatieMVCv2.Domain.Slave.MenuItem)
@*<div id="myslidemenu" class="jqueryslidemenu">*@

[code]....

And i'm calling the partial view with:

@Html.Action("Menu","Home")

View 1 Replies


ADVERTISEMENT

Repository - .net Code Repositories Around?

Aug 1, 2010

I was wondering if there are any good vb.net code repositories around where people share code they have written, widgets they have developed, classes developed? I hate re-inventing the wheel.

View 3 Replies

Automatically Register All Reports In A Unity Container?

Oct 28, 2010

I'm trying to automatically register all reports in a unity container.All reports implement IReport and also have a Report() attribute which defines the title, description and unique key (so I can read these without instantiating a concrete class).So...I get the report types like this

Public Shared Function GetClassesWhichimplementInterface(Of T)() As IEnumerable(Of Type)
Dim InterfaceType = GetType(T)
Dim Types As IEnumerable(Of Type)[code]....

why the container isn't preserving the registration?

View 1 Replies

Inherit Form - Events From AaMyForm Execute Correctly But Controls Added To It Are Not Shown On XForm

Oct 31, 2011

Public Class aaMyForm
Inherits Windows.Forms.Form

Added some controls. Build it, add the .DLL as reference to my other project.

In my other project:

Imports MyLib
Public Class XForm
Inherits aaMyForm

The events from aaMyForm execute correctly but the controls added to it are not shown on XForm. I have found some info about set Modifiers Protected in order to be able to change the functionality of the controls but havent found anything about why the controls aren display on the XForm.

View 5 Replies

ASP.NET MVC - Implement Validation When Using Data Repositories?

Jun 15, 2010

I've built a UserRepository interface to communicate with my LINQ to SQL Data layer, but I'm trying to figure out how to implement validation.

Here is what my AddUser subroutine looks like

Public Sub AddUser(ByVal about As String, ByVal birthdate As DateTime, ByVal openid As String, ByVal regionid As Integer, ByVal website As String) Implements IUserRepository.AddUser

[Code].....

View 2 Replies

Implement A Constructor In MVVM Unity?

Feb 28, 2012

I have just started using MVVM design pattern with unity and I'm strugling to work out how you add a constructor.my code currently works if I comment out my constructor that requires input the view gets added to the shell.

Protected Overrides Sub ConfigureModuleCatalog()
MyBase.ConfigureModuleCatalog()
Dim moduleCatalog As ModuleCatalog = CType(Me.ModuleCatalog, ModuleCatalog)
moduleCatalog.AddModule(GetType(GridModule))
End Sub

how do I pass in variables into my GridModule ?

View 5 Replies

Unity Setting When Defined In Code?

Apr 14, 2010

I have problem when asking for default ILogger from Unity container. I have this setting defined in code (its VB.net)

Dim container As IUnityContainer
...
container.RegisterType(Of ILogger, NullLogger)()

[code].....

View 1 Replies

Mvc - Using The Repository Pattern

Feb 23, 2011

I am using the Entity Framework with POCO's generated using the T4 Templates. I have the generated classes in a separate assembly. Ok, so a very simple example: I have a Category entity in the model which has SubCategories (1-Many with SubCategory). When I use the following code, I get The ObjectContext instance has been disposed and can no longer be used for operations that require a connection. [Code]

View 2 Replies

Best Way To Use NHibernate With The Repository Model

Mar 16, 2009

I have a repository class that defines some basic Get/Save/Delete methods. Inside these, I use NHibernate to do the work on my business entities. For example:

[code]...

However, on my User class I have some properties and collections of other objects that ideally I'd like to be lazy loaded. But of course, the ISession is created and disposed within the repository, which I guess is why, outside of that, when I try to access those properties I get a "Could not initialize proxy - no Session" error.Is my only option then to disable lazy loading when using repositories? Or is it possible (or just foolish) to somehow get the session into scope in the business layer?I do like the repository model, and NHibernate is growing on me (after lots of initial frustration trying to make it work), so what's the best way you gurus have found of using them together?

View 1 Replies

.net - VS 2010 Entity Repository Error

Jun 12, 2010

In my project I have it set up so that all the tables in the DB has the property "id" and then I have the entity objects inherit from the EntityBase class using a repository pattern. I then set the inheritance modifier for "id" property in the dbml file o/r designer to "overrides"

Public MustInherit Class EntityBase
MustOverride Property id() As Integer
End Class
Public MustInherit Class RepositoryBase(Of T As EntityBase)

[Code]...

however produces the error "Class member EntityBase.id is unmapped" when i use VS 2010 using the 4.0 framework but I never received that error with the old one.

View 1 Replies

LINQ To SQL: Fake Repository With Many-to-Many Relationships?

Aug 6, 2009

I have two tables, Clients and Administrators, which are linked in a many-to-many relationship by the table ClientAdministrators. In the real application this works fine and I can get a list of Administrators for my Client. My problem comes in trying to unit test the service class that is retrieving this from the repository. I have a FakeRepository class which implements my repository interface and I have several internal lists of objects for the service class to query against.

[Code]...

View 3 Replies

Repository Record - Dirty Columns Are Always Zero

May 29, 2009

SubSonic 2.2. I use the repository record pattern, with a table "appointment" with an appointmentId as auto-incrementing int. I am trying to update it, but when I do update the fields with something totally different, dirty columns are always zero, and I get an exception.

[Code]...

View 1 Replies

Using The BusinessObjects SDK To Interact With Objects In Its Repository?

Oct 27, 2009

The File Class has methods for sending/receiving (CopyTo and Overwrite) binary data to/from the File Repository Server (where files like Crystal Reports are stored), both of which have an overload that supports 'Binary data (safearray of VT_UI1)

View 1 Replies

Files/sub-dirs When Adding Items In A New Repository?

Mar 23, 2010

I didn't see a question on this subject in the archives, so here goes: For those of you experienced Mercurial users, is this a correct .hgignore file to tell VB.Net Express to ignore files/sub-dirs when adding items in a new repository?

[Code]...

View 1 Replies

Control Added On The Fly Is Added To The Wrong Location Of An Auto-scroll Panel?

Jun 21, 2010

I have a program that adds controls on the fly to an auto-scroll panel. When the panel is scrolled (viewing the bottom of the panel for example) and a control is added, it looks like it is added assuming the top left corner of the panel is still at 0,0 when in fact it may be 0,500. To see what I am talking about, create an empty "Windows Forms Application" project and insert the below code into it.

Friend WithEvents Panel1 As System.Windows.Forms.Panel
Friend WithEvents btnAdd As System.Windows.Forms.Button
Dim ButtonCount As Integer

[code]......

View 4 Replies

Generic Repository With Entity Framework 4.0 Function Imports?

Feb 23, 2010

I have a generic repository that I communicate with my object context with. My object context has function imports that I want to be able to call through my generic repository. Currently I call them through an "Execute" function, but this is not ideal because I have to pass in my function name and parameters as strings which can cause run-time exceptions. My function imports map to complex types.

Is there a way to do something similar to:

Dim rep As IRepository(Of ComplexType)

Dim type As ComplexType = rep.Find(where:=Function(t) t.FunctionImport(parm, parm)).First()

Here is my generic repository as is:

[Code]...

View 1 Replies

.net - Repository Pattern - Remove Child Elements From Multiple Parents

Nov 16, 2011

I have the following tables

Public Class Tag
<Key()> _
Public Property TagID As Integer

[Code].....

I implemented the repository pattern.

Now i have a list of Tags which contain the right TagReferences, but the tags may not be deleted, it's the TagReferences.

Variabels = ReferenceValue,ReferenceID
IEnumerable(Of Tag) = TagRepository.GetMany(Function(el) el.Reference = ReferenceValue And el.TagReferences.Any(Function(bl) bl.ReferencedID.Equals(ReferenceID)))

How can i remove all the TagReferences which contain the ReferenceID in one line?

View 1 Replies

Svn - TortoiseSVN Hangs With .vbproj File On Initial Import To Repository?

Aug 25, 2011

we have a CollabNet Subversion Edge server running on a Windows server. Subversion Server is configured to serve via https. When trying to import a Visual Studio project folder with TortoiseSVN it hangs when adding the project file (.vbproj). Test 1: It happens exactly the same when the server is configured to serve via http.Test 2: Importing any project folder using the console utility (svn) works fine.

Both these tests lead to the conclusion that there is neither a network nor authorization problem.

View 1 Replies

Dynamic Added Textbox To Status Bar And Added Event

Jun 10, 2009

i have multiple forms in a project and all have statusbar. there is no way to add textbox on status bar but in my previous thread i got the help to add the text box. i created a function in module so that i call that function from all the forms on load and add the textbox on status bar and also add the event on textchange. the function to be called on event change is in individual form (at present)[code]

View 11 Replies

Original DataTable Object Has Columns Added When Variable Has Columns Added?

Oct 6, 2011

I have a datatable property called prpParametersTable in a class called clsBatch. I have a procedure that sets a datatable variable called dtP equal to prpParametersTable at the beginning of the procedure. I then add three new columns to dtP.Here is my problem. When I add the three new columns to dtP my original table prpParametersTable also gets those columns added to it, why? I only want to add the three columns to dtP and not prpParametersTable. How can I do that?

Private Function prvfnc_InsertBatchParameters(ByRef cnn As SqlConnection, ByRef trans As SqlTransaction) As String
' set new columns that have BatchID, Insert DateTime, and UserID for the SQLBulkCopy method below
Dim clm As DataColumn
Dim dtP As DataTable = clsBatch.prpParametersTable

[code]....

View 1 Replies

Mvc - Repository Pattern Implements Methods By Adding Add1 But Should Use Methods Of The Baseclass?

Aug 29, 2011

This is the original code in c#

public class CategoryRepository: RepositoryBase<Category>, ICategoryRepository
{
public CategoryRepository(IDatabaseFactory databaseFactory)
: base(databaseFactory)

[Code]...

Does anyone has an idea what i should change to let it work and let my UserRepository use the methods in RepositoryBase while implementing the IUserRepository?

View 1 Replies

Get File Info From A File On A Subversion Repository?

Jul 20, 2011

I have a utility that checks various file info (size, date, location, etc) against a manifest to see that it all matches. Would anyone know if there's a way to get the last write date of a file in a svn repository, using VB.NET. The equivalent of using FileInfo.LastWriteDate.

View 1 Replies

Any Container Like The Map In C++?

Apr 2, 2009

There is any container for vb.net like the map in c++?

View 2 Replies

Use A Non-MDI Container As A Container?

May 23, 2011

I have a form (say Form1) opened into a MDI Container form, and I want to open a new form (Form2) as a child of Form1. I open it with Form2.showdialog() but it don't act as a child, I mean, I can move it outside the bouds of the Form1 (and even the MDI)

View 2 Replies

Container For Constants In .NET?

Jun 29, 2010

Say I have some constants that depends one of other, and I decided to keep them together in a container instead of keeping it as individual constants in a class.I thought use a Structure for that scope, but compiler force me to declare a private member for that structure.

[Code]...

View 4 Replies

Design Own Rtb Which Can Act Like A Container?

Jul 21, 2009

is there a way to design my own rtb which can act like a container? I mean I want to add the functionality of a container e-g panel to rtb. How can I start it?

View 7 Replies

Did Container Change In 4.0?

Jul 27, 2010

This is more of a ASP.NET question, but we are using VB.NET so it might be relevant. We just recently upgraded an ASP.NET 1.1 project to 4.0.Once we started running through the app to regression test it, we found that (consistently) if we made a call like DataBinder.Eval(Container, "PropertyName") from a User Control, ASP.NET complained that it could not find the PropertyName on the page.

PropertyName *does* exist on the User Control, but not on the page.This worked up until we upgraded to 4.0.The fix we found was instead of using "Container", we used "Me" to reference the control that the code was being called on.

View 2 Replies

MDI Container Backgroud With RTL?

Jul 29, 2009

start a desktop app. make the form 1- MDI Container = True. 2- Right to Left = True , 3- change the Right to left Layout = True.Set the background to any jpg image, when you run the form, the backgroud disappears.

View 3 Replies

Set Pixel In Some Container?

Feb 2, 2012

VB 6.0 had a Set Pixel function, which is not available in VB.net. using a draw ellipse function with parameters specifying a circle one pixel in diameter.The above is painfully slow.I have been drawing graphics in a Bit Map using a Set Pixel function & then copying the entire graphic from Bit Map to a Picture Box. This results in nothing seeming to happen for several seconds & then the entire graphic is displayed in the Picture Box.

The above does the job, but it would be nice to display the graphic as it is being generated pixel by pixel, which was possible using VB 6.0, Might there be a Windows 7 API which would set a pixel? Might Microsoft be considering a Set Pixel function for Picture Box graphics?

View 5 Replies

Usercontrol Like Container?

Apr 5, 2012

I made a User control.I add two Panel in this Usercontrol. But i want one of panel keep control like container when i add my usercontrol in the from.but when i add user cousercontrol does not contrin any controlntrol in the from but my . how can i user usercontrol like container

View 3 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved