DB/Reporting :: Wrap Entity Framework-generated Classes?

Nov 19, 2008

I'm using a 3rd party tool to generate my model including code classes for the MS Entity framework. What I wanna do is etablish a real layer application. I'm speaking of the layers:

Presentation
Business
Data

If I'm not wrong the generated classes represent the data layer. My question is if I should wrap this classes up for my business layer or not. In some way these generated classes already represents the logic of my application as it was derived from my database. But is this enough?

I definitely wanna use LINQ as well which works pretty good with the generated classes alone.

I'm looking forward to any comments.BTW: It's going to be a ASP.NET web application. I have used the projetc type "class library" for the data layer. The web application will use this DLL.

View 1 Replies


ADVERTISEMENT

DB/Reporting :: Crystal Reports & Entity Framework 4 With Nullable Types

Jul 6, 2011

I have written an application which manages some bookings, and want to use Crystal Reports to provide the reporting engine. I have used it before with datasets with no problems.

I am using EF4, and have a LINQ query and report datasource assignment as below:

Code:

Dim ActiveCustomers = From Customer In FMEntities.Customers
Where Customer.Status = 1
Select Customer

[Code].....

I have read up that I may need to convert the incoming data, but I am confused as to what it needs to be converted to. Should it be a datatable?

View 1 Replies

C# - Are Microsoft Entity Framework And ADO.NET Entity Framework (.edmx) The Same

May 13, 2010

c# - Are Microsoft Entity Framework and ADO.NET Entity Framework (.edmx) the same?

View 7 Replies

.net - ADO.net Entity Framework - Update Only Certain Properties On A Detached Entity

Jul 22, 2009

I want to update an entity without loading the entity from the database first. I've accomplished this but only by knowing all of the entities properties and then using the "attachto" method. My issues is i don't want my app to need to remember all of the properties. Example:

[Code]....

View 3 Replies

.NET Sample Entity Framework 4.2 Code First Entity Splitting?

Dec 14, 2011

Entity Splitting: one class, two or more tables.Here is how it is done in C#, but I need to get it working in vb.net.One more thing: the class name and table columns do not match, so I have to be able to map that out, too.I have to get this to work this way because the place I'm working at right now is a vb.net only shop and the database schema is fubar, but they have so much (millions) of lines of code done directly against the database in both asp classic, vb.net, AND asp.net webforms that changing the schema right now is not realistically possible.

protected override void OnModelCreating(DbModelBuilder modelBuilder)
{
modelBuilder.Entity<Post>()
.Map(m =>

[code]....

View 1 Replies

Asp.net - Using ExecuteQuery() With Entity Framework, Entity Class

Jan 16, 2011

I am trying to jump from ASP Classic to asp.net. I have followed tutorials to get Entity Framework and LINQ to connect to my test database, but I am having difficulties figuring out ExecuteQuery(). I believe the problem is that I need an "entity class" for my database, but I can't figure out how to do it. Here is my simple code:

Dim db as New TestModel.TestEntity
Dim results AS IEnumerable(OF ???) = db.ExecuteQuery(Of ???)("Select * from Table1")

From the microsoft example site, they use an entity class called Customers, but I don't understand what that means.

View 1 Replies

Wrap HTML Around Something That Is Generated In Code?

May 29, 2009

I'm having a problem using XML literals with a StringBuilder in VB 2008. If I use this code everything is fine.Dim html As New System.Text.StringBuilder

html.Append(<html><body></body></html>)
MsgBox("hello")

Now the problem is I want to wrap HTML around something that is generated in code.

html.Append(<html><body>)
msgbox("nothing happens")

When the HTML doesn't have the corresponding ending tag, it acts like it goes beyond the ) and keeps looking for it.

View 4 Replies

Sockets - Winsock Replacement - Any Decent Public Classes With Events That Wrap The Socket Class?

Jan 25, 2011

I'm trying to update an application from vb6 to vb.net. The orig app used the winsock control. Unfortunately I can't nor do I want to use it in the re-write. Are there any decent public classes with events that wrap the Socket class?

View 1 Replies

Entity Framework - C# Or .Net?

Feb 18, 2010

My company is tossing around the idea of using the Entity Framework when it comes out with .NET 4. We are currently a VB.NET shop, but have some interest in switching to C#.Is there any major arguments for or against such a move?Does EF with C# hold any advantages in performance, coding ease, etc over VB.NET?

View 10 Replies

Creating Entity Classes With The O/R Designer?

Aug 15, 2011

I am using the O/R Designer to create entity classes in VB 2010. I am observing different results for different database tables that I can't explain and more importantly, can't replicate the results that I want.Using server explorer, I have dragged a number of tables on the O/R designer surface, thereby creating the entity classes.

I have saved the project and can access the various entity classes in my project code. I first noticed a difference when changes made to object instances from some tables/entity classes appeared to persist while changes made to object instances from other tables/entity classes did not persist. These object instances are created, accessed, and changed using the exact same code patterns except for the object, class and table names.

I have been looking to see if there are any differences between the way in which the entity classes are treated, either in my code, in server explorer, or in the O/R Designer. I cannot find any. The properties of the entity classes indicate that all of the classes use the runtime methods for insert, delete and update. As far as I am aware, I have not knowingly made changes to these methods.

The ONLY difference that I find is in the file NameofClass.designer.vb. This is an automatically generated document. The partial class of those objects that appear to persist changes contains different code from that of other partial classes where changes to objects do not persist.In the declarations section of this partial class, the following lines appear:

<Global.System.Data.Linq.Mapping.TableAttribute(Name:="dbo.OrderofBattle")> _
Partial Public Class OrderofBattle
Implements System.ComponentModel.INotifyPropertyChanging, System.ComponentModel.INotifyPropertyChanged

[code]....

If I am right then I want to enable persistence in my other classes by causing this additional code to be generated for them. But how? why the code for this one class hase been generated differently than for all the others (actually it is this way for 2 out of about 15 classes). What setting or or selection do I have to make to enable this code to be created for my other entity classes during the automated process?

View 3 Replies

Inheritance And Entity Classes In VB 2008?

Jun 27, 2011

I am having trouble getting inheritance to work with the VB 2008 Express entity classes. I am a beginner with VB.Net and self-taught in VB6.0.I am able to pull data from an SQL Server data base into my application using the O/R designer. The data can be successfully queried using LINQ to SQL, either returning a single record, or multiple records or an entire table as a collection of the enty class type (so the problem is not with LINQ queries).

View 2 Replies

Add A Many-To-Many Relation In Entity Framework?

Apr 17, 2009

I am a newbie. I have been able to Add new entities where there is a One-To-Many Relation. I am having a problem (don't Know how to do it) adding a new Entity when the relation is using Many-To-Many. In my EDM I have:

[Code]....

View 1 Replies

ADO.NET Entity Framework Tools?

Apr 16, 2011

I downloaded the VB 2010 Express software, the total files that we included in the download was 15, but it only loaded up 12 of these files. The following downloads did not get loaded as follows:MS Visual Studio 2010 ADO.NET Entity Framework Tools

MS HelpViewe 1.0 x64

I tried reinstalling the downloads that did not using the VB Express 2010 setup, but they do no appear on the list of downloads, only the SP1 for MS SQL Server 2008 Express Server (x64).Do I require the downloads that did not load.

View 2 Replies

Asp.net Mvc - Entity Framework With Database?

Apr 21, 2012

Here are the entities that i have...

Public Class Account
Public Property AccountId As integer
Public Property AccountDescription As String
Public Property Transactions As List(Of Transaction)
End Class

[Code]...

i would like to make it suc that when i do "db.Account.find(1)" for example it also loads in the list of all transactions which have the coresponding AccountId. I'm not too sure what type of relationship this is?? anyway, right now i can do

Dim acct As Account = db.Account.Find(1) acct.Transactions = from ts in db.transactions select ts where ts.AccountId = acct.accountid but i know this is not the correct way, there must be a way to map this out so that entity can just load everything in one shot right?

View 1 Replies

Entity Data Framework 101

Sep 28, 2011

I am used to using datasets for my projects in terms of data access. I now set myself an easy app to work on in order to learn the entity data framework and how to retrieve & manipulate data.Can anyone guide me through on where to start, what are the advantages of this model, In what scenarios should I choose to use entity framework and what are the things (basis) I should now before starting.My datasets are working fine too. Are there any reasons for me not to stick with that way of accessing data? Or is this something to consider depending on the users of the website (for speed purposes etc.)

View 3 Replies

Entity Framework VB Join

Feb 28, 2012

I'm trying to learn EF in visual basic. I'm struggling with finding any easy to understand simple tutorial of how to do inner joins.

This is the SQL that i'm trying to replicate in EF:

SELECT Quote.LockedDateTime, IncommingQuoteStatus.StatusDesc, Users.FirstName
+ ' ' + Users.LastName AS UserName
FROM Quote

[Code].....

View 1 Replies

WPF With Entity Framework Or Linq?

Feb 8, 2011

I have some basic expirience in Visual Basic and programming Windows Forms programs. I know now that forms programs are no longer updated by Microsoft and that WPF is the way to go. No to mention the slicker interface you can create. I've also noticed that passing SQL strings to a database is no longer the standard either. It's either Entity Framwork or Linq.

So I am going for a fresh approach. I need to develop a program that will access a sql database and be accessed by about 10 concurrent users within the office. What's the best approach in general? Linq or Entity Framework? Also, could you recommend a book or two for someone who is new to WPF and Entity Framework? I do have some programming expirience, just none with WPF or the new ways of ADO.net 4.

View 4 Replies

.net - Entity Framework 4 Save And Cancel?

Nov 3, 2010

I'm currently testing the entity framework 4 for a simple app I wish to build.

how do you save and cancel changes on a record basis? Using the save changes method on the context persists all the changes to the database.

View 3 Replies

.net - Entity Framework Query With More Than One Join VB?

May 10, 2012

I'm trying to use the Entity Framework to create a complex query and get stuck in the joins. After browsing some of the documentations, I cannot seem to find the correct solution, so maybe someone here can help.

I have a data structure where a family has several family members, each of which can have more than one entry in the income table (on different registration dates) and can have more than one entry in the healthconditions table.

[Code]...

View 1 Replies

.Net Entity Framework - Let Keyword With A Condition

Jul 7, 2011

I need to make a if-else statement in the query meaning I only want to add the OpenAmount to ExpectedAmount if the type = Cash, the problem is that it only gives me the cash row not the other row.

[Code]...

View 1 Replies

Active Record With Entity Framework?

May 14, 2012

I'm working on a project that was built using ADO.NET (raw sql) and Active Record pattern. I am slowly moving it away from ADO.NET to Entity Framework Code First 4.3.Here is an example of the pattern. The interface is a static Load and an instance Save (and Delete -- not shown).

Public Class Part
Public Property Id as Integer
Public Shared Function Load(_id As Integer) As Part

[code].....

View 1 Replies

Asp.net - Accomplish With Entity Framework Without Using Two Contexts?

Apr 6, 2011

I have the following code:

Private Sub btnReserve_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles btnReserve.Click
Using dbContext As pbu_housingEntities = New pbu_housingEntities

[Code].....

executes it always get 0, because the row has not yet been created in the database. I can just move this last bit of code out into its own Context, but is there a better way to do this?

View 2 Replies

Asp.net Mvc - Editable Gridview With Entity Framework

Dec 20, 2011

I am trying to make an MVC index view with bulk editing functionality, but can't seem to get it working. I have replaced the Html.DisplayFor with HTML.editorfor items, and put the whole table in a form which submits back to my index function. I have tried various ideas, but currently my function is

[Code]...

View 1 Replies

Association End Is Not Mapped In ADO Entity Framework?

Jan 15, 2009

I am just starting out with ADO.net Entity Framework I have mapped two tables together and receive the following error:

Error 1 Error 11010: Association End 'OperatorAccess' is not mapped. E:Visual StudioprojectsBrandi IIBrandi IIHospitals.edmx 390 11 Brandi II

View 6 Replies

C# - Column Sequence And The Entity Framework?

Dec 28, 2009

So, when you bind a collection of Entity objects to a grid component, the grid displays those fields in the sequential order they are found in the SQL Table they came from. This shows that the ordinal position of the fields are associated with their corresponding entity properties... somehow or other.

So here is the question: How can I obtain the table field ordinal position by reflecting over an Entity Framework Entity's properties? Let me tell you what I know and what I have tried. Apparently, each data field property in an EF Entity is decorated with a System.Runtime.Serialization.DataMemberAttribute. This attribute appears to have an Order property. However, I have discovered that this property does not contain what I am looking for. The value for all Data Properties in an Entity seems to be -1. What ever order is, it isn't ordinal position.

View 1 Replies

C# - Entity Framework & Stored Procedures?

Nov 5, 2010

I noticed in the Entity Framework designer that you can map stored procedures for Insert, Update, and Delete operations. Is there any way to do this for Select operations as well, or is there a new direction for database access code where we don't really write stored procedures for our basic select operations any more?The company I work for is pretty adamant about always using stored procedures for every database operation, even though the Entity Framework makes the calls safe by calling sp_executesql.It seems like both LINQ to SQL and Entity Framework have moved away from using stored procedures for selecting the data. Is this an accurate statement?Just to clarify my question:I have a table in my database called Product. I use the wizard in the Entity Framework to generate my models...so I now have an Entity called Product. When I do the following query:

db.Products.SingleOrDefault(p => p.Id == 1);

It generates code similar to:

EXEC sp_executesql N'SELECT * FROM Product'[code].....

If it's not possible to do that using SingleOrDefault I'm fine with that. I'd much rather have the following:

db.Products.GetProduct(1);

Is this something that is normally done or do most people just have it dynamically generate the SQL?

View 2 Replies

C# - Entity Framework Looking For Wrong Column

Mar 12, 2011

I'm brand new to the Entity Framework and trying to learn all it can offer. I'm currently working my way through the MVC Music Store tutorial which includes the following code:

public ActionResult Browse(string genre) {
// Retrieve Genre and its Associated Albums from database
var genreModel = storeDB.Genres.Include("Albums")
.Single(g => g.Name == genre);
return View(genreModel);
[Code] .....

The problem is I'm getting the following exception:
Invalid column name 'GenreGenreId'.
Which I know is true, but I can't for the life of my work out where it's getting 'GenreGenreId' from.

Here is the source for my classes:
Album.vb
Public Class Album
Private _title As String
Private _genre As Genre
Private _AlbumId As Int32
[Code] .....

View 3 Replies

C# - Makes ADO.NET Entity Framework Different Than Other ORM In The Market?

Mar 4, 2009

The question header is clear, i want to know why its different and why, when to select it for my project?

View 6 Replies

Entity Framework 4.1 - Relationships Between Non Key Columns

Aug 24, 2011

I have 2 entities that are related, but the legacy sql schema essentially has 2 key columns for the same table (not a 2-column key: see below). I need to create a relationship back to the 'faux key' column. Is there a way to do this declaratively in Entity Framework 4.1?

Public Class Client
Inherits ModelBase
<Key(), Required()>
Public Property ClientID As Decimal
<Required(), StringLength(50)>
Public Property ClientCode As String .....

And the error I am getting is:
One or more validation errors were detected during model generation: System.Data.Edm.EdmAssociationConstraint: : The types of all properties in the Dependent Role of a referential constraint must be the same as the corresponding property types in the Principal Role. The type of property 'ClientCode' on entity 'ClientLocation' does not match the type of property 'ClientID' on entity 'Client' in the referential constraint 'ClientLocation_Client'.

Because it thinks I'm trying to map ClientLocation.ClientCode > Client.ClientID, when I am really trying to map ClientLocation.ClientCode > Client.ClientCode...

View 4 Replies

Entity Framework Context Not Working?

Oct 15, 2011

I am trying to figure out Entity Framework but I keep running into issues with the context. I create my .edmx file and it works fine but when I try to declare my context on my pages Visual Studio will not find them. My .edmx file is called YCLModel.edmx and my connectionstring for it is YCLEntites.

I try to declare the context as:

Dim yclcontext as new YCLEntites

I have also tried going into design mode and dragging from the toolbox but when I select my named connection it gives me the following error:

The metadata specified in the connection string could not be loaded. Consider rebuilding the web project to build assemblies that may contain metadata. The following error(s) occurred: Unable to load the specified metadata resource.

View 1 Replies







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