A single file database access tool based on .net 4 dynamics made by Rob Connery.
0
votes
0answers
37 views
Add all options at once using “Quick simple product creation” on a configurable product
I'm developing a website where we sell Murano chandeliers and I have a problem: Products can be chosen in 40 different colors and all colors cost the same but I have to create each different color ...
2
votes
1answer
63 views
Does Dapper use numbered parameters such as in Massive
Does Dapper use numbered parameters such as in Massive(@0, @1, ...) unlike named (@a, @b, ...)?
It is necessary to create a query as
//select @0 as val union select @1 union select @2 union select ...
1
vote
1answer
79 views
“Database is locked” exception when using Massive with SQLite
Recently I browse the micro ORMs and I like Massive for SQLite because its simple. But I have now an issue.
I am just running some select statement followed by an update statement but I am getting an ...
2
votes
1answer
55 views
Using Massive Insert I get DBNull when trying to get scope_identity()
I have a table with an identity column.
Using Massive with code like this
var table = new Categories();
var newID = table.Insert(new {CategoryName = "Buck Fify Stuff", Description = "Things I ...
0
votes
1answer
60 views
read uncommitted when using Rob Conery's Massive
is there a way to do a read uncommitted when using Rob Conery's Massive with out writing your own Query?
1
vote
2answers
122 views
How do I build simple D3 charts that display massive amounts of data?
I would like to use D3 to build simple charts with literally hundreds of millions of data points.
Obviously, I won't be attempting to plot millions of points at a time. Only a very, very tiny ...
0
votes
1answer
172 views
Massive: Using stored procedure
I am trying to execute stored procedure using Massive micro-orm.
var tbl = new DynamicModel("Conn", tableName: "User", primaryKeyField: "UserID");
var result = tbl.Query("EXEC User_INSERT ...
1
vote
2answers
262 views
Massive: Update object: Cannot update identity column
I have following scenario...
Massive Micro-ORM
.NET framework 4.0
SQL Server 2008R2
Model:
public class sUser : DynamicModel
{
public sUser() : base(Model.strConnection, "Users", "UserId") { ...
4
votes
1answer
95 views
Access DynamicModel.Query using dot notation or index
I am using Massive micro-orm and SQL server 2008R2 with .NET framework 4.0.
// This is my model
public class sUser : DynamicModel
{
public sUser() : base(Model.strConnection, "Users", ...
0
votes
1answer
90 views
How can I determine if a stored procedure needs a parameter? [duplicate]
Possible Duplicate:
How can I retrieve a list of parameters from a stored procedure in SQL Server
I'm using Massive to create a generic stored procedure executor. Basically, I have a ...
0
votes
2answers
124 views
Select distinct rows from a table using massive ORM
How can I retrieve distinct rows from a table using massive ORM . I need to get list of unique studentname from table 'Student' that has columns ID,StudentName,Age . ID is the primary key.
Note : ...
0
votes
1answer
124 views
Massive ORM remove column SQLite
I am using the Massive ORM for a wpf application. I have screen with listview and needs to be populated with two tables (one being master data). E.g. I am populating the list of Employees and Salaries ...
5
votes
2answers
183 views
Least-bad way to change constructor behaviour
I feel like I'm stuck between several bad solutions here and need some advice on how to minimize future agony. We are using Massive ORM, which in its constructor has these lines:
var _providerName = ...
0
votes
1answer
175 views
Massive ORM and sql in function
I can't seem to find any good examples but what is the best way to do a query like this
tbl.Query(SELECT * FROM PRODUCTS WHERE ProductId IN (@Ids)", idlist)
I see that Dapper ORM, you can just put ...
0
votes
1answer
103 views
BuildCommands argument in rob conery's Massive
I am using rob conery's Massive.
The method List<DbCommand> BuildCommands(params object[] things) according to the methods comments is supposed to take objects that "can be POCOs, Anonymous, ...
1
vote
1answer
146 views
how to create model in mvc3 using massive db for a DB table with composite primary key?
Im new to massive ORM. Im working in asp .net mvc3 and using massive ORM. I have a table with composite primary and I need to create model for the same. Can anyone tell me how to do this? I had ...
0
votes
2answers
300 views
Reading from Multiple tables using Rob Conery Massive
I recently started using Rob Conery's Massive for reading from and oracle database in C#.
Its working really well however recently I came across a problem when trying to perform an Inner Join. Usually ...
3
votes
2answers
310 views
Replacements to hand-rolled ADO.NET POCO mapping?
I have written a wrapper around ADO.NET's DbProviderFactory that I use extensively throughout my applications. I also have written a lot of code that maps IDataReader rows to POCOs. However, as I have ...
0
votes
2answers
112 views
what is the differnce between entity framewok and massive ORM?
I had been researching on various ORM when I came across ORM called "Massive". Can anyone give me the difference between Massive and Entity framework 4. Which one is better?
2
votes
1answer
593 views
ASP.NET Massive - How to create database to display VIEW
Hello guys wanna ask help because I don't understand how to create database that I can use using MASSIVE.CS in ASP.NET MVC 3.
Im stuck in figuring out how I can implement this MASSIVE class to my ...
2
votes
1answer
382 views
Massive ORM - Transaction over multiple tables
I've been looking at Massive ORM. Don't forget, just looking, I didn't do any coding yet.
I'm interested of the possibilities to save data transactional. I've seen it's possible to save, 20 lines in ...
0
votes
1answer
187 views
How to make a connection to a database via Massive
How to make a connection to a database via Massive?
There is a method in Massive for opening a connection, but it accepts name of a connection string. I want to give it the connection string. How can ...
0
votes
0answers
243 views
Performance issue with Flot jQuery plugin
I have a prolbem with the Flot plugin while loading massive data(about 30,000 data points & 200 series).
It takes more than 15 seconds to loading flot. And zooming or drag-drop become not that ...
8
votes
2answers
2k views
Best strategies when working with micro ORM?
I started using PetaPOCO and Dapper and they both have their own limitations. But on the contrary, they are so lightning fast than Entity Framework that I tend to let go the limitations of it.
My ...
3
votes
1answer
170 views
When using Massive, how do you retrieve values from Out parameters of stored procedures?
I've been testing Rob Conery's Massive ORM in some of my projects. I usually use stored procedures and Massive seems to work pretty well and makes it easy.
However, i can't figure out how to specify ...
3
votes
1answer
533 views
Accessing stored procedures with robconery / massive?
Another great article by Rob on the Massive ORM. What I haven't been able to find is references on how to access stored procedures. SubSonic had some issues with the overhead of using ActiveRecords, ...
0
votes
1answer
131 views
Using Massive; in a WPF Application with EF
I want to use Massive ORM(by Rob Conerys) in a WPF Application using Entity Framework.
It sais to add in app.config the providerName = 'System.Data.SqlClient'
but using EF I have ...
4
votes
1answer
330 views
How to update a table with composite keys using Massive ORM?
Using Rob Conery's Massive micro-ORM; is it possible to work with tables that have composite keys?
I can't quite see how to assign more than a single column name as 'PrimaryKeyField'. Anyone managed ...
3
votes
1answer
455 views
Using MicroORM for read layer in CQRS
Folks,
Im considering using a microORM such as Dapper.net for the read access component of a CQRS application (Asp.Net MVC), with Entity Framework being used for manipulating the domain.
This is CQRS ...
0
votes
2answers
1k views
Switching from NHibernate to Massive or Dapper
I understand the basic principles of the micro orm systems like massive and dapper, however i'm struggling with understanding how it's possible to model a table with relationships.
ie:
Category ...
2
votes
1answer
283 views
query a list of dynamic objects
I am using massive to get the config table in the database. I would like to cache the config since the app gets values from it all the time.
once cached is there an easy way to find the object where ...
1
vote
1answer
250 views
Massive.Sqlite.cs — Prototype fails because there is no COLUMN_NAME; Fix using PRAGMA table_info?
I having playing around with Rob Connery's Massive.Sqlite and I have a problem when the Prototype property is called: gets the schema base on this SQL sentence
SELECT * FROM sqlite_master WHERE type ...
1
vote
1answer
735 views
Repository Pattern Where and Lightweight ORMs
For my IRepository, i would like:
To have it be usable by a micro-orm like dapper, petapoco, massive etc... for the SPEED
To have where clauses that get run on the server, hopefully using ...
0
votes
1answer
208 views
Massive Query with inner join not returning any data
I'm using the Massive Query method to write a simple join query against an Oracle database. This is my code with the query simplified even further by taking out some columns:
dynamic logTable ...
0
votes
2answers
183 views
NUnit is not failing test with dynamic keyword of .Net 4.0
I am using NUnit with Visual Studio Express Edition 2010 for C#, Now, normally test works fine. But whenever I try to use Massive.cs, which is open source api to access database. Test fails from that ...
0
votes
1answer
593 views
serializing dates correctly with javascript serializer in asp.net mvc3
i am experimenting with backbone javascript after seeing the Tekpub MVC3 screencasts by Rob Connery
i like his Massive database access, but as soon as it is getting a bit more complex than a video ...
2
votes
0answers
379 views
How do I flatten a JSON response from IEnumerable<dynamic>?
I am using Rob Conery's excellent masssive micro ORM in an ASP.NET MVC 3 application.
When I query using massive the return type from the Query method is IEnumerable<dynamic> which returns JSON ...
2
votes
1answer
392 views
Unable to Save List<dynamic> using Rob Conery's Massive
I'm using Rob Conery's Massive to connect to my database, but I don't seem to be able to be able to save a list of dynamic objects to the database. I thought this was supported though.
Here's the ...
1
vote
2answers
709 views
Massive with WCF Web Api to return dynamic types/Expandos?
I want to use Massive for data access with WCF Web Api and return either dynamic or ExpandoObject / IEnumerable<ExpandoObject> from my web api.
I have this basically working using a ...
3
votes
1answer
946 views
Massive ORM and inheritance
Does the micro ORM "massive" have a way of handling inheritance?
robconery / massive
Is it hard to write a provider for Massive?
I've got a need for something very close to SQL Server. As a ...
2
votes
1answer
359 views
Can Massive .NET ORM work on Mono for Linux?
Can the Massive .NET ORM work on Mono for Linux? If so what would need to be setup?
4
votes
1answer
456 views
Can Massive work with MySql?
I would like to use Massive with MySql and I see there are SQL (default), PostgresSQL, Oracle, and Sqllite providers for Massive. Is there a provider for MySql or does one of the other providers work ...
2
votes
1answer
128 views
How do I set the command timeout using Massive ORM?
How do I set the command timeout property using Massive ORM?
0
votes
0answers
108 views
Flexible list views of data entities - NHibernate seems not to be right, but what is?
I'm working on implementing functionality in an existing MVC3+NHibernate application that would allow users to define custom views on data entities. The problem I've had with NHibernate is that the ...
10
votes
2answers
3k views
AutoMapper (Or Similar) - Allow Mapping of Dynamic types?
I've started to use https://github.com/robconery/massive for a project, I wonder if there is any mapping tool that allows support for Dynamic to static type mapping?
I've used AutoMapper previously, ...
1
vote
0answers
303 views
MVC3 Testing a Create Action and passing back created object - TempData?
How to pass a successfully created object from Create action with a RedirectToAction?
All looks good in the action, just can't reference it in the test.
[Test]
public void ...
2
votes
1answer
477 views
Examples of the Massive Micro ORM with SQL Server Compact 4.0
Are there any examples out there using Massive with SQL Server Compact 4.0?
I have seen many examples with SQL Express but not with CE.
I am having issues with my configuration (connection string / ...
4
votes
3answers
475 views
Count on an IEnumerable<dynamic>
I'm using Rob Conery's Massive ORM.
Is there an elegant way to do a count on the record set returned?
dynamic viewModelExpando = result.ViewData.Model;
var queryFromMassiveDynamic = ...
4
votes
1answer
950 views
ExpandoObject to static object and back again. Spanning the two domains [closed]
I'm seeking some discussion with this post.
I'm looking at incorporating C# 4.0 Dynamic features into a legacy system. My explicit example is using Rob Connery's Massive in a data layer. But my ...
1
vote
1answer
109 views
How to test for no results in Massive
I've created a Find method on a Massive class. Problem is I've just realised it always returns true as the results are never null. Here's my code:
public dynamic Find(string email)
{
...
