Products

Solutions

Resources

Partners

Community

Blog

About

QA

Ideas Test

New Community Website

Ordinarily, you'd be at the right spot, but we've recently launched a brand new community website... For the community, by the community.

Yay... Take Me to the Community!

Welcome to the DNN Community Forums, your preferred source of online community support for all things related to DNN.
In order to participate you must be a registered DNNizen

HomeHomeDevelopment and...Development and...Getting StartedGetting StartedDNN7 PetaPoco Support for Spatial Data Type DBGeographyDNN7 PetaPoco Support for Spatial Data Type DBGeography
Previous
 
Next
New Post
2/25/2013 3:30 AM
 

Hi,

I have been working on a project which is to use the .Net 4.5 DbGeography data type but I am having problems working with the data type with DNN7's implementation of PetaPoco. It would seem that it does not support it. 

I get an error "No mapping exists from object type System.Data.Spatial.DbGeography to a known managed provider native type"

I have found an article about how to allow spatial data types by editing PetaPoco.cs but this is in regards to the original library. http://john.katsiotis.com/blog/petapoco-and-spatial-data-types

How might I get spatial data types to work with DNN7?

This is my code by the way. It errors on rep.Insert()

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Net;
using System.Web;
using System.Net.Http;
using System.Web.Http;
using System.Data.Spatial;
using DotNetNuke.Web.Api;
using DotNetNuke.Data;
 
 
namespace DotNetNuke.Modules.GeoLocations
{
    public class LocationController: DnnApiController
    {
        [AllowAnonymous]
        [HttpGet]
        public HttpResponseMessage HelloWorld()
        {
            return Request.CreateResponse(HttpStatusCode.OK, "Hello World!");
        }
 
        [AllowAnonymous]
        [HttpPost]
        [ValidateAntiForgeryToken]
        public HttpResponseMessage addLocation(CP_Location submitted)
        {
 
            //submitted.GeoCode = DbGeography.PointFromText(string.Format("POINT({0} {1})", submitted.Long, submitted.Lat), 4326);
            createLocation(submitted);
 
            return Request.CreateResponse(HttpStatusCode.OK, "Success");
        }
 
 
 
        //------------------------------CRUD------------------------------//
 
        public void createLocation(CP_Location location)
        {
            using (IDataContext ctx = DataContext.Instance())
            {
                var rep = ctx.GetRepository<CP_Location>();
                rep.Insert(location);
            }
        }
    }
}

 

 
New Post
3/1/2013 12:28 PM
 
Still no resolution for this issue so I resorted to using the petapoco ExecuteScalar helper class to execute a stored procedure that crunches a Geography point with passed in Longitude and Latitude values.
 
Previous
 
Next
HomeHomeDevelopment and...Development and...Getting StartedGetting StartedDNN7 PetaPoco Support for Spatial Data Type DBGeographyDNN7 PetaPoco Support for Spatial Data Type DBGeography


These Forums are dedicated to discussion of DNN Platform and Evoq Solutions.

For the benefit of the community and to protect the integrity of the ecosystem, please observe the following posting guidelines:

  1. No Advertising. This includes promotion of commercial and non-commercial products or services which are not directly related to DNN.
  2. No vendor trolling / poaching. If someone posts about a vendor issue, allow the vendor or other customers to respond. Any post that looks like trolling / poaching will be removed.
  3. Discussion or promotion of DNN Platform product releases under a different brand name are strictly prohibited.
  4. No Flaming or Trolling.
  5. No Profanity, Racism, or Prejudice.
  6. Site Moderators have the final word on approving / removing a thread or post or comment.
  7. English language posting only, please.
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out