Giter Site home page Giter Site logo

fakedbset's People

Contributors

a-h avatar keesschollaart81 avatar kevinkuszyk avatar realistschuckle avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

fakedbset's Issues

Implementation for Find

I've got an implementation for Find that works assuming you're reasonable about your keys and primary key names.

My full file here: https://gist.github.com/vongillern/5ce21c06f5b15f30b63c

Just the find:

    public T Find(params object[] keyValues)
    {
        if (keyValues.Length != 1)
            throw new Exception("not implemented");

        var type = typeof(T);
        var prop = type.GetProperty(type.Name + "Id");
        var getter = prop.GetGetMethod();

        var keyType = keyValues[0].GetType();
        if (getter.ReturnType != keyType)
            throw new Exception("mismatch keytype");
        if (getter.ReturnType == typeof(Int32))
            return this.FirstOrDefault(t => (int)getter.Invoke(t, null) == (int)keyValues[0]);
        else if (getter.ReturnType == typeof(Guid))
            return this.FirstOrDefault(t => (Guid)getter.Invoke(t, null) == (Guid)keyValues[0]);
        else
            throw new Exception("unknown keytype");

    }

Compatible with InternalsVisibleTo

Would you be willing to make the project compatible with "InternalsVisibleTo"? From what I've seen, you'd need to strongly sign the assembly.

I have two projects:

  • A
  • A.Test

A.Test references your project.

I have internal classes in A that I'd like to test in A.Test using InternalVisibleTo, so I've signed the two assemblies. However I no longer can load your assembly since it isn't signed.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.